@prefix : <http://www.semwebtech.org/mondial/10/meta#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix swrl: <http://www.w3.org/2003/11/swrl#>.

# some declarations are intensionally redundant

:Country a owl:Class.
:Province a owl:Class.
:City a owl:Class.

:Continent a owl:Class.
:Lake a owl:Class.
:Sea a owl:Class.
:River a owl:Class.
:Source a owl:Class.
:Estuary a owl:Class.
:Mountain a owl:Class.
:Desert a owl:Class.
:Island a owl:Class.
:Language a owl:Class.
:Religion a owl:Class.
:EthnicGroup a owl:Class.

:name rdfs:domain :MondialThing.
:carCode rdfs:domain :Country.

:PoliticalThing rdfs:subClassOf :MondialThing.
:GeographicalThing rdfs:subClassOf :MondialThing.
:AnthropoGeographicalThing rdfs:subClassOf :MondialThing;
   owl:disjointWith :GeographicalThing.

:PoliticalOrGeographicalThing owl:disjointUnionOf 
     (:PoliticalThing :GeographicalThing);
   owl:disjointWith :AnthropoGeographicalThing.

:AdministrativeArea rdfs:subClassOf :Area;
   rdfs:subClassOf :PoliticalThing.
:AdministrativeSubdivision rdfs:subClassOf :AdministrativeArea.

:Country rdfs:subClassOf :AdministrativeArea.
:Province rdfs:subClassOf :AdministrativeArea;
   rdfs:subClassOf :AdministrativeSubdivision;
   owl:disjointWith :Country.
:City rdfs:subClassOf :AdministrativeSubdivision;
   rdfs:subClassOf :Place;
   owl:disjointWith :Country;
   owl:disjointWith :Province.
:Organization rdfs:subClassOf :PoliticalThing;
   owl:disjointWith :Country;
   owl:disjointWith :Province;
   owl:disjointWith :City.

# a border is a line between two areas (e.g. country/country,
#  sea/sea, country/sea)
 
:Border a owl:Class;
  rdfs:subClassOf :Line.
:bordering rdfs:domain :Border;
  rdfs:range :Area;
  owl:inverseOf :hasBorder;
  owl:cardinality 2 .

:neighbor a rdf:Property; 
  rdfs:subPropertyOf :borders;
  rdfs:domain :Country; rdfs:range :Country.

# Countries, Provinces, Cities:

:hasProvince a owl:InverseFunctionalProperty; 
  rdfs:domain :Country; rdfs:range :Province.
:hasProvince owl:inverseOf :isProvinceOf.
:isProvinceOf rdfs:subPropertyOf :belongsTo.
:cityIn rdfs:subPropertyOf :belongsTo.
:hasCity owl:inverseOf :cityIn.

:belongsTo rdfs:domain :AdministrativeSubdivision.
:belongsTo rdfs:range :AdministrativeArea.

:population rdfs:domain :PoliticalOrGeographicalThing.
:population rdfs:range xsd:nonNegativeInteger.

:capital a owl:FunctionalProperty;
  rdfs:domain :AdministrativeArea;
  rdfs:range :City;
  owl:inverseOf :isCapitalOf.

:populationGrowth rdfs:domain :AdministrativeArea; rdfs:range xsd:decimal.
:infantMortality rdfs:domain :AdministrativeArea; rdfs:range xsd:decimal.
:gdpTotal rdfs:domain :AdministrativeArea; rdfs:range xsd:decimal.
:gdpAgri rdfs:domain :AdministrativeArea; rdfs:range xsd:decimal.
:gdpInd rdfs:domain :AdministrativeArea; rdfs:range xsd:decimal.
:gdpServ rdfs:domain :AdministrativeArea; rdfs:range xsd:decimal.
:inflation rdfs:domain :AdministrativeArea; rdfs:range xsd:decimal.
:government rdfs:domain :Country; rdfs:range xsd:string.
:independenceDate rdfs:domain :Country; rdfs:range xsd:string.
:dependentOf rdfs:domain :Country; rdfs:range :Country.

:abbrev a owl:FunctionalProperty; rdfs:domain :Organization;
  rdfs:range xsd:string.
:established a owl:FunctionalProperty; 
  rdfs:domain :PoliticalThing.
:hasHeadq a owl:FunctionalProperty; 
  rdfs:domain :Organization; rdfs:range :City.

# Geographical Things

:Continent rdfs:subClassOf :Area;
  rdfs:subClassOf :GeographicalThing.
:Water rdfs:subClassOf :GeographicalThing;
  owl:disjointWith :Continent.
:River rdfs:subClassOf :Water;
  rdfs:subClassOf :Line.
:Lake rdfs:subClassOf :Water;
  rdfs:subClassOf :Area;
  rdfs:subClassOf :Place;
  owl:disjointWith :River.
:Sea rdfs:subClassOf :Water;
  rdfs:subClassOf :Area;
  rdfs:subClassOf :Place;
  owl:disjointWith :River.
:Source rdfs:subClassOf :Place;
  owl:disjointWith :Water.
:Estuary rdfs:subClassOf :Place;
  owl:disjointWith :Water;
  owl:disjointWith :Source.
  
:Desert rdfs:subClassOf :GeographicalThing;
  rdfs:subClassOf :Area;
  owl:disjointWith :Continent;
  owl:disjointWith :Water;
  owl:disjointWith :Source;
  owl:disjointWith :Estuary.
:Island rdfs:subClassOf :GeographicalThing;
  rdfs:subClassOf :Area;
  rdfs:subClassOf :Place;
  owl:disjointWith :Continent;
  owl:disjointWith :Desert;
  owl:disjointWith :Water;
  owl:disjointWith :Source;
  owl:disjointWith :Estuary.
:Mountain rdfs:subClassOf :GeographicalThing;
  rdfs:subClassOf :Place;
  owl:disjointWith :Continent;
  owl:disjointWith :Water;
  owl:disjointWith :Desert;
  owl:disjointWith :Island;
  owl:disjointWith :Source;
  owl:disjointWith :Estuary.

:area rdfs:domain :Area; 
  rdfs:range xsd:decimal.

:length rdfs:domain :Line; 
  rdfs:range xsd:decimal.

:height rdfs:domain :Place; 
  rdfs:range xsd:decimal.

:longitude rdfs:domain :Place; 
  rdfs:range xsd:decimal.
:latitude rdfs:domain :Place; 
  rdfs:range xsd:decimal.

:borders rdfs:domain :Area;
  rdfs:range:Area.

# Relationships

:Encompassed rdfs:subClassOf :ReifiedRelationship.
:encompassedArea a owl:FunctionalProperty;
  rdfs:domain :Encompassed; rdfs:range :Area;
  owl:inverseOf :isEncompassed.
:encompassedBy a owl:FunctionalProperty;
  owl:inverseOf :hasEncompassment;
  rdfs:domain :Encompassed; rdfs:range :Area.

:encompassed rdfs:domain :Country;
  rdfs:range :Continent;
  owl:inverseOf :encompasses.

:Membership rdfs:subClassOf :ReifiedRelationship.
:ofMember a owl:FunctionalProperty; rdfs:domain :Membership;
  owl:inverseOf :isInMembership; rdfs:range :Country. 
:inOrganization a owl:FunctionalProperty; rdfs:domain :Membership;
  owl:inverseOf :hasMembership; rdfs:range :Organization.

:isMember rdfs:domain :Country;
  rdfs:range :Organization;
  owl:inverseOf :hasMember.

:flowsInto rdfs:domain :Water;
  rdfs:range :Water.
:hasSource rdfs:domain :River;
  rdfs:range :Source.
:hasEstuary rdfs:domain :River;
  rdfs:range :Estuary.

:locatedIn rdfs:domain :GeographicalThing;
  rdfs:range :Area.

:locatedAt rdfs:domain :City;
  rdfs:range :GeographicalThing.
:locatedOnIsland rdfs:domain :Place;
  rdfs:range :Island.
:locatedInSea rdfs:domain :Island;
  rdfs:range :Sea.

# Anthropogeographical Things

:Language rdfs:subClassOf :AnthropoGeographicalThing.
:Religion rdfs:subClassOf :AnthropoGeographicalThing;
  owl:disjointWith :Language.
:EthnicGroup rdfs:subClassOf :AnthropoGeographicalThing;
  owl:disjointWith :Language;
  owl:disjointWith :Religion.

:AnthropoGeographicalRelationship rdfs:subClassOf :ReifiedRelationship.
:SpokenBy rdfs:subClassOf :AnthropoGeographicalRelationship.
:BelievedBy rdfs:subClassOf :AnthropoGeographicalRelationship;
  owl:disjointWith :SpokenBy.
:EthnicProportion rdfs:subClassOf :AnthropoGeographicalRelationship;
  owl:disjointWith :SpokenBy;
  owl:disjointWith :BelievedBy.

:belongToEthnicGroup a owl:InverseFunctionalProperty;
  rdfs:domain :Country; rdfs:range :EthnicProportion;
  owl:inverseOf :populatedBy.
:speakLanguage a owl:InverseFunctionalProperty;
  rdfs:domain :Country; rdfs:range :SpokenBy;
  owl:inverseOf :spokenBy.
:believeInReligion a owl:InverseFunctionalProperty;
   rdfs:domain :Country; rdfs:range :BelievedBy;
   owl:inverseOf :believedBy.

:onLanguage a owl:FunctionalProperty; 
  owl:inverseOf :spokenInCountry;
  rdfs:domain :SpokenBy; rdfs:range :Language.
:onReligion a owl:FunctionalProperty;
  rdfs:domain :BelievedBy; rdfs:range :Religion.
:onEthnicGroup a owl:FunctionalProperty; 
  rdfs:domain :EthnicProportion; rdfs:range :EthnicGroup.

  
:percent a owl:FunctionalProperty; rdfs:range xsd:decimal.
##########################################################

#mon:population  rdfs:range xsd:int; a owl:FunctionalProperty. ## all cities are different.
_:Million a rdfs:Datatype; owl:onDatatype xsd:int; owl:withRestrictions (_:m1).
_:m1 xsd:minInclusive 1000000 .

:ProvinceWithBigCity a owl:Class.   # otherwise sparql answer empty.
:ProvinceWithTwoBigCities a owl:Class.   # otherwise sparql answer empty.
:CountryWithTwoBigCities a owl:Class.   # otherwise sparql answer empty.

:HasBigPopulation owl:equivalentClass [a owl:Restriction;
  owl:onProperty :population; owl:someValuesFrom _:Million].
:BigCity owl:intersectionOf (:City :HasBigPopulation).

:x a swrl:Variable.   :y a swrl:Variable.     :z a swrl:Variable.
:PWBigCityRule a swrl:Imp;
   swrl:head ([ a swrl:ClassAtom; swrl:classPredicate :ProvinceWithBigCity;
                swrl:argument1 :x]);
   swrl:body ([ a swrl:ClassAtom; swrl:classPredicate :Province;
                swrl:argument1 :x ]
              [ a swrl:ClassAtom; swrl:classPredicate :BigCity;
                swrl:argument1 :y ]
              [ a swrl:IndividualPropertyAtom; swrl:propertyPredicate :hasCity;
                swrl:argument1 :x ; swrl:argument2 :y ]).

:PW2BigCitiesRule a swrl:Imp;
   swrl:head ([ a swrl:ClassAtom; swrl:classPredicate :ProvinceWithTwoBigCities;
                swrl:argument1 :x]);
   swrl:body ([ a swrl:ClassAtom; swrl:classPredicate :Province;
                swrl:argument1 :x ]
              [ a swrl:ClassAtom; swrl:classPredicate :BigCity;
                swrl:argument1 :y ]
              [ a swrl:ClassAtom; swrl:classPredicate :BigCity;
                swrl:argument1 :z ]
              [ a swrl:IndividualPropertyAtom; swrl:propertyPredicate :hasCity;
                swrl:argument1 :x ; swrl:argument2 :y ]
              [ a swrl:IndividualPropertyAtom; swrl:propertyPredicate :hasCity;
                swrl:argument1 :x ; swrl:argument2 :z ]
              [ a swrl:DifferentIndividualsAtom;
                swrl:argument1 :y ; swrl:argument2 :z ]).

:r3 a swrl:Imp;
   swrl:head ([ a swrl:ClassAtom; swrl:classPredicate :CountryWithTwoBigCities;
                swrl:argument1 :x]);
   swrl:body ([ a swrl:ClassAtom; swrl:classPredicate :Country;
                swrl:argument1 :x ]
              [ a swrl:ClassAtom; swrl:classPredicate :BigCity;
                swrl:argument1 :y ]
              [ a swrl:ClassAtom; swrl:classPredicate :BigCity;
                swrl:argument1 :z ]
              [ a swrl:IndividualPropertyAtom; swrl:propertyPredicate :hasCity;
                swrl:argument1 :x ; swrl:argument2 :y ]
              [ a swrl:IndividualPropertyAtom; swrl:propertyPredicate :hasCity;
                swrl:argument1 :x ; swrl:argument2 :z ]
              [ a swrl:DifferentIndividualsAtom;
                swrl:argument1 :y ; swrl:argument2 :z ]).

:r4 a swrl:Imp;
   swrl:head ([ a swrl:ClassAtom; swrl:classPredicate :CountryWithTwoBigCities;
                swrl:argument1 :x]);
   swrl:body ([ a swrl:ClassAtom; swrl:classPredicate :Country;
                swrl:argument1 :x ]
              [ a swrl:ClassAtom; swrl:classPredicate :ProvinceWithBigCity;
                swrl:argument1 :y ]
              [ a swrl:ClassAtom; swrl:classPredicate :ProvinceWithBigCity;
                swrl:argument1 :z ]
              [ a swrl:IndividualPropertyAtom; swrl:propertyPredicate :hasProvince;
                swrl:argument1 :x ; swrl:argument2 :y ]
              [ a swrl:IndividualPropertyAtom; swrl:propertyPredicate :hasProvince;
                swrl:argument1 :x ; swrl:argument2 :z ]
              [ a swrl:DifferentIndividualsAtom;
                swrl:argument1 :y ; swrl:argument2 :z ]).

:r5 a swrl:Imp;
   swrl:head ([ a swrl:ClassAtom; swrl:classPredicate :CountryWithTwoBigCities;
                swrl:argument1 :x]);
   swrl:body ([ a swrl:ClassAtom; swrl:classPredicate :Country;
                swrl:argument1 :x ]
              [ a swrl:ClassAtom; swrl:classPredicate :ProvinceWithTwoBigCities;
                swrl:argument1 :y ]
              [ a swrl:IndividualPropertyAtom; swrl:propertyPredicate :hasProvince;
                swrl:argument1 :x ; swrl:argument2 :y ]).



##########################################################

 <http://abc/mondial/10/countries/AL> rdf:type :Country ;
       :name 'Albania';
     :carCode 'AL';
     :area 28750;
     :capital <http://abc/mondial/10/countries/AL/cities/Tirane>;
     :population 3249136;
     :populationGrowth 1.34;
     :infantMortality 49.2;
     :gdpTotal 4100;
     :gdpAgri 55;
     :inflation 16;
     :independenceDate '1912-11-28';
     :government 'emerging democracy' .
 <http://abc/mondial/10/countries/GR> rdf:type :Country ;
       :name 'Greece';
     :carCode 'GR';
     :area 131940;
     :capital <http://abc/mondial/10/countries/GR/provinces/Attiki/cities/Athens>;
     :population 10538594;
     :populationGrowth 0.42;
     :infantMortality 7.4;
     :gdpTotal 101700;
     :gdpInd 22.2;
     :gdpServ 66;
     :gdpAgri 11.8;
     :inflation 8.1;
     :independenceDate '1829-01-01';
     :government 'parliamentary republic' .
 <http://abc/mondial/10/countries/MK> rdf:type :Country ;
       :name 'Macedonia';
     :carCode 'MK';
     :area 25333;
     :capital <http://abc/mondial/10/countries/MK/cities/Skopje>;
     :population 2104035;
     :populationGrowth 0.46;
     :infantMortality 29.7;
     :gdpTotal 1900;
     :gdpInd 44;
     :gdpServ 32;
     :gdpAgri 24;
     :inflation 14.8;
     :independenceDate '1991-09-17';
     :government 'emerging democracy' .
 <http://abc/mondial/10/countries/SRB> rdf:type :Country ;
       :name 'Serbia';
     :carCode 'SRB';
     :area 77474;
     :capital <http://abc/mondial/10/countries/SRB/cities/Belgrade>;
     :population 7379339;
     :populationGrowth -0.47;
     :infantMortality 6.75;
     :gdpTotal 52180;
     :gdpInd 24.2;
     :gdpServ 63.5;
     :gdpAgri 12.3;
     :inflation 6.8;
     :independenceDate '2006-06-05';
     :government 'parliamentary democracy' .
 <http://abc/mondial/10/countries/MNE> rdf:type :Country ;
       :name 'Montenegro';
     :carCode 'MNE';
     :area 14026;
     :capital <http://abc/mondial/10/countries/MNE/cities/Podgorica>;
     :population 672180;
     :populationGrowth -0.851;
     :gdpTotal 4515;
     :inflation 3.4;
     :independenceDate '2006-06-03';
     :government 'parliamentary democracy' .
 <http://abc/mondial/10/countries/KOS> rdf:type :Country ;
       :name 'Kosovo';
     :carCode 'KOS';
     :area 10887;
     :capital <http://abc/mondial/10/countries/KOS/cities/Pristina>;
     :population 1804838;
     :gdpTotal 3237;
     :gdpInd 20;
     :gdpServ 60;
     :gdpAgri 20;
     :inflation 5.3;
     :independenceDate '2008-02-17';
     :government 'republic' .
 <http://abc/mondial/10/countries/AND> rdf:type :Country ;
       :name 'Andorra';
     :carCode 'AND';
     :area 450;
     :capital <http://abc/mondial/10/countries/AND/cities/AndorralaVella>;
     :population 72766;
     :populationGrowth 2.96;
     :infantMortality 2.2;
     :gdpTotal 1000;
     :government 'parliamentary democracy that retains as its heads of state a coprincipality' .
 <http://abc/mondial/10/countries/F> rdf:type :Country ;
       :name 'France';
     :carCode 'F';
     :area 547030;
     :capital <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris>;
     :population 58317450;
     :populationGrowth 0.34;
     :infantMortality 5.3;
     :gdpTotal 1173000;
     :gdpInd 26.5;
     :gdpServ 71.1;
     :gdpAgri 2.4;
     :inflation 1.7;
     :government 'republic' .
 <http://abc/mondial/10/countries/E> rdf:type :Country ;
       :name 'Spain';
     :carCode 'E';
     :area 504750;
     :capital <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Madrid>;
     :population 39181114;
     :populationGrowth 0.16;
     :infantMortality 6.3;
     :gdpTotal 565000;
     :gdpInd 33.6;
     :gdpServ 62.8;
     :gdpAgri 3.6;
     :inflation 4.3;
     :independenceDate '1492-01-01';
     :government 'parliamentary monarchy' .
 <http://abc/mondial/10/countries/A> rdf:type :Country ;
       :name 'Austria';
     :carCode 'A';
     :area 83850;
     :capital <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna>;
     :population 8023244;
     :populationGrowth 0.41;
     :infantMortality 6.2;
     :gdpTotal 152000;
     :gdpInd 34;
     :gdpServ 64;
     :gdpAgri 2;
     :inflation 2.3;
     :independenceDate '1918-11-12';
     :government 'federal republic' .
 <http://abc/mondial/10/countries/CZ> rdf:type :Country ;
       :name 'Czech Republic';
     :carCode 'CZ';
     :area 78703;
     :capital <http://abc/mondial/10/countries/CZ/provinces/Praha/cities/Prague>;
     :population 10321120;
     :populationGrowth -0.03;
     :infantMortality 8.4;
     :gdpTotal 106200;
     :gdpInd 40.7;
     :gdpServ 53.5;
     :gdpAgri 5.8;
     :inflation 9.1;
     :independenceDate '1993-01-01';
     :government 'parliamentary democracy' .
 <http://abc/mondial/10/countries/D> rdf:type :Country ;
       :name 'Germany';
     :carCode 'D';
     :area 356910;
     :capital <http://abc/mondial/10/countries/D/provinces/Berlin/cities/Berlin>;
     :population 83536115;
     :populationGrowth 0.67;
     :infantMortality 6;
     :gdpTotal 1452200;
     :gdpInd 34.2;
     :gdpServ 64.8;
     :gdpAgri 1;
     :independenceDate '1871-01-18';
     :government 'federal republic' .
 <http://abc/mondial/10/countries/H> rdf:type :Country ;
       :name 'Hungary';
     :carCode 'H';
     :area 93030;
     :capital <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-/cities/Budapest>;
     :population 10002541;
     :populationGrowth -0.68;
     :infantMortality 12.3;
     :gdpTotal 72500;
     :gdpInd 37.5;
     :gdpServ 55.2;
     :gdpAgri 7.3;
     :inflation 28.3;
     :independenceDate '1001-01-01';
     :government 'republic' .
 <http://abc/mondial/10/countries/I> rdf:type :Country ;
       :name 'Italy';
     :carCode 'I';
     :area 301230;
     :capital <http://abc/mondial/10/countries/I/provinces/Lazio/cities/Rome>;
     :population 57460274;
     :populationGrowth 0.13;
     :infantMortality 6.9;
     :gdpTotal 1088600;
     :gdpInd 31.6;
     :gdpServ 65.5;
     :gdpAgri 2.9;
     :inflation 5.4;
     :independenceDate '1861-03-17';
     :government 'republic' .
 <http://abc/mondial/10/countries/FL> rdf:type :Country ;
       :name 'Liechtenstein';
     :carCode 'FL';
     :area 160;
     :capital <http://abc/mondial/10/countries/FL/cities/Vaduz>;
     :population 31122;
     :populationGrowth 1.08;
     :infantMortality 5.3;
     :gdpTotal 630;
     :inflation 5.4;
     :independenceDate '1719-01-23';
     :government 'hereditary constitutional monarchy' .
 <http://abc/mondial/10/countries/SK> rdf:type :Country ;
       :name 'Slovakia';
     :carCode 'SK';
     :area 48845;
     :capital <http://abc/mondial/10/countries/SK/cities/Bratislava>;
     :population 5374362;
     :populationGrowth 0.34;
     :infantMortality 10.7;
     :gdpTotal 39000;
     :gdpInd 47.6;
     :gdpServ 45.7;
     :gdpAgri 6.7;
     :inflation 7.5;
     :independenceDate '1993-01-01';
     :government 'parliamentary democracy' .
 <http://abc/mondial/10/countries/SLO> rdf:type :Country ;
       :name 'Slovenia';
     :carCode 'SLO';
     :area 20256;
     :capital <http://abc/mondial/10/countries/SLO/cities/Ljubljana>;
     :population 1951443;
     :populationGrowth -0.27;
     :infantMortality 7.3;
     :gdpTotal 22600;
     :gdpInd 39.9;
     :gdpServ 54.8;
     :gdpAgri 5.3;
     :inflation 8;
     :independenceDate '1991-06-25';
     :government 'emerging democracy' .
 <http://abc/mondial/10/countries/CH> rdf:type :Country ;
       :name 'Switzerland';
     :carCode 'CH';
     :area 41290;
     :capital <http://abc/mondial/10/countries/CH/provinces/BE/cities/Bern>;
     :population 7207060;
     :populationGrowth 0.59;
     :infantMortality 5.4;
     :gdpTotal 158500;
     :gdpInd 33.5;
     :gdpServ 63.5;
     :gdpAgri 3;
     :inflation 1.8;
     :government 'federal republic' .
 <http://abc/mondial/10/countries/BY> rdf:type :Country ;
       :name 'Belarus';
     :carCode 'BY';
     :area 207600;
     :capital <http://abc/mondial/10/countries/BY/cities/Minsk>;
     :population 10415973;
     :populationGrowth 0.2;
     :infantMortality 13.4;
     :gdpTotal 49200;
     :gdpInd 49;
     :gdpServ 30;
     :gdpAgri 21;
     :inflation 244;
     :independenceDate '1991-08-25';
     :government 'republic' .
 <http://abc/mondial/10/countries/LV> rdf:type :Country ;
       :name 'Latvia';
     :carCode 'LV';
     :area 64100;
     :capital <http://abc/mondial/10/countries/LV/cities/Riga>;
     :population 2468982;
     :populationGrowth -1.39;
     :infantMortality 21.2;
     :gdpTotal 14700;
     :gdpInd 31;
     :gdpServ 60;
     :gdpAgri 9;
     :inflation 20;
     :independenceDate '1991-09-06';
     :government 'republic' .
 <http://abc/mondial/10/countries/LT> rdf:type :Country ;
       :name 'Lithuania';
     :carCode 'LT';
     :area 65200;
     :capital <http://abc/mondial/10/countries/LT/cities/Vilnius>;
     :population 3646041;
     :populationGrowth -0.35;
     :infantMortality 17;
     :gdpTotal 13300;
     :gdpInd 42;
     :gdpServ 38;
     :gdpAgri 20;
     :inflation 35;
     :independenceDate '1991-09-06';
     :government 'republic' .
 <http://abc/mondial/10/countries/PL> rdf:type :Country ;
       :name 'Poland';
     :carCode 'PL';
     :area 312683;
     :capital <http://abc/mondial/10/countries/PL/provinces/Warszwaskie/cities/Warsaw>;
     :population 38642565;
     :populationGrowth 0.14;
     :infantMortality 12.4;
     :gdpTotal 226700;
     :gdpInd 38;
     :gdpServ 55;
     :gdpAgri 7;
     :inflation 21.6;
     :independenceDate '1918-11-11';
     :government 'democratic state' .
 <http://abc/mondial/10/countries/UA> rdf:type :Country ;
       :name 'Ukraine';
     :carCode 'UA';
     :area 603700;
     :capital <http://abc/mondial/10/countries/UA/provinces/Kyyivska/cities/Kiev>;
     :population 50864009;
     :populationGrowth -0.4;
     :infantMortality 22.5;
     :gdpTotal 174600;
     :gdpInd 43;
     :gdpServ 26;
     :gdpAgri 31;
     :inflation 9;
     :independenceDate '1991-12-01';
     :government 'republic' .
 <http://abc/mondial/10/countries/R> rdf:type :Country ;
       :name 'Russia';
     :carCode 'R';
     :area 17075200;
     :capital <http://abc/mondial/10/countries/R/provinces/Moskva/cities/Moscow>;
     :population 148178487;
     :populationGrowth -0.07;
     :infantMortality 24.7;
     :gdpTotal 796000;
     :gdpInd 41;
     :gdpServ 53;
     :gdpAgri 6;
     :inflation 7;
     :independenceDate '1991-08-24';
     :government 'federation' .
 <http://abc/mondial/10/countries/B> rdf:type :Country ;
       :name 'Belgium';
     :carCode 'B';
     :area 30510;
     :capital <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels>;
     :population 10170241;
     :populationGrowth 0.33;
     :infantMortality 6.4;
     :gdpTotal 197000;
     :gdpInd 28;
     :gdpServ 70;
     :gdpAgri 2;
     :inflation 1.6;
     :independenceDate '1830-10-04';
     :government 'constitutional monarchy' .
 <http://abc/mondial/10/countries/L> rdf:type :Country ;
       :name 'Luxembourg';
     :carCode 'L';
     :area 2586;
     :capital <http://abc/mondial/10/countries/L/cities/Luxembourg>;
     :population 415870;
     :populationGrowth 1.57;
     :infantMortality 4.7;
     :gdpTotal 10000;
     :gdpInd 33.7;
     :gdpServ 64.9;
     :gdpAgri 1.4;
     :inflation 3.6;
     :government 'constitutional monarchy' .
 <http://abc/mondial/10/countries/NL> rdf:type :Country ;
       :name 'Netherlands';
     :carCode 'NL';
     :area 37330;
     :capital <http://abc/mondial/10/countries/NL/provinces/NoordHolland/cities/Amsterdam>;
     :population 15568034;
     :populationGrowth 0.56;
     :infantMortality 4.9;
     :gdpTotal 301900;
     :gdpInd 26.9;
     :gdpServ 69.7;
     :gdpAgri 3.4;
     :inflation 2.25;
     :independenceDate '1579-01-01';
     :government 'constitutional monarchy' .
 <http://abc/mondial/10/countries/BIH> rdf:type :Country ;
       :name 'Bosnia and Herzegovina';
     :carCode 'BIH';
     :area 51233;
     :capital <http://abc/mondial/10/countries/BIH/cities/Sarajevo>;
     :population 2656240;
     :populationGrowth -2.84;
     :infantMortality 43.2;
     :gdpTotal 1000;
     :independenceDate '1992-04-01';
     :government 'emerging democracy' .
 <http://abc/mondial/10/countries/HR> rdf:type :Country ;
       :name 'Croatia';
     :carCode 'HR';
     :area 56538;
     :capital <http://abc/mondial/10/countries/HR/cities/Zagreb>;
     :population 5004112;
     :populationGrowth 0.58;
     :infantMortality 10.2;
     :gdpTotal 20100;
     :gdpInd 30.6;
     :gdpServ 56.7;
     :gdpAgri 12.7;
     :inflation 3.7;
     :independenceDate '1991-06-25';
     :government 'parliamentary democracy' .
 <http://abc/mondial/10/countries/BG> rdf:type :Country ;
       :name 'Bulgaria';
     :carCode 'BG';
     :area 110910;
     :capital <http://abc/mondial/10/countries/BG/cities/Sofia>;
     :population 8612757;
     :populationGrowth 0.46;
     :infantMortality 15.7;
     :gdpTotal 43200;
     :gdpInd 36;
     :gdpServ 52;
     :gdpAgri 12;
     :inflation 35;
     :independenceDate '1908-09-22';
     :government 'emerging democracy' .
 <http://abc/mondial/10/countries/RO> rdf:type :Country ;
       :name 'Romania';
     :carCode 'RO';
     :area 237500;
     :capital <http://abc/mondial/10/countries/RO/provinces/Bucuresti/cities/Bucharest>;
     :population 21657162;
     :populationGrowth -1.21;
     :infantMortality 23.2;
     :gdpTotal 105700;
     :gdpInd 36.3;
     :gdpServ 44.1;
     :gdpAgri 19.6;
     :inflation 25;
     :independenceDate '1881-01-01';
     :government 'republic' .
 <http://abc/mondial/10/countries/TR> rdf:type :Country ;
       :name 'Turkey';
     :carCode 'TR';
     :area 780580;
     :capital <http://abc/mondial/10/countries/TR/provinces/Ankara/cities/Ankara>;
     :population 62484478;
     :populationGrowth 1.67;
     :infantMortality 43.2;
     :gdpTotal 345700;
     :gdpInd 33.2;
     :gdpServ 51.3;
     :gdpAgri 15.5;
     :inflation 94;
     :independenceDate '1923-10-29';
     :government 'republican parliamentary democracy' .
 <http://abc/mondial/10/countries/DK> rdf:type :Country ;
       :name 'Denmark';
     :carCode 'DK';
     :area 43070;
     :capital <http://abc/mondial/10/countries/DK/cities/Copenhagen>;
     :population 5249632;
     :populationGrowth 0.38;
     :infantMortality 4.8;
     :gdpTotal 112800;
     :gdpInd 23.5;
     :gdpServ 73.5;
     :gdpAgri 3;
     :inflation 2.4;
     :government 'constitutional monarchy' .
 <http://abc/mondial/10/countries/EW> rdf:type :Country ;
       :name 'Estonia';
     :carCode 'EW';
     :area 45100;
     :capital <http://abc/mondial/10/countries/EW/cities/Tallinn>;
     :population 1459428;
     :populationGrowth -1.13;
     :infantMortality 17.4;
     :gdpTotal 12300;
     :gdpInd 37;
     :gdpServ 53;
     :gdpAgri 10;
     :inflation 29;
     :independenceDate '1991-09-06';
     :government 'republic' .
 <http://abc/mondial/10/countries/FARX> rdf:type :Country ;
       :name 'Faroe Islands';
     :carCode 'FARX';
     :area 1400;
     :capital <http://abc/mondial/10/countries/FARX/cities/Torshavn>;
     :population 43857;
     :populationGrowth -1.8;
     :infantMortality 7.2;
     :gdpTotal 733;
     :inflation 6.8;
     :government 'part of the Danish realm' .
 <http://abc/mondial/10/countries/SF> rdf:type :Country ;
       :name 'Finland';
     :carCode 'SF';
     :area 337030;
     :capital <http://abc/mondial/10/countries/SF/provinces/Uusimaa/cities/Helsinki>;
     :population 5105230;
     :populationGrowth 0.1;
     :infantMortality 4.9;
     :gdpTotal 92400;
     :gdpInd 28;
     :gdpServ 67.4;
     :gdpAgri 4.6;
     :inflation 2;
     :independenceDate '1917-12-06';
     :government 'republic' .
 <http://abc/mondial/10/countries/N> rdf:type :Country ;
       :name 'Norway';
     :carCode 'N';
     :area 324220;
     :capital <http://abc/mondial/10/countries/N/provinces/Oslo/cities/Oslo>;
     :population 4383807;
     :populationGrowth 0.48;
     :infantMortality 4.9;
     :gdpTotal 106200;
     :gdpInd 34.7;
     :gdpServ 62.4;
     :gdpAgri 2.9;
     :inflation 2.5;
     :independenceDate '1905-10-26';
     :government 'constitutional monarchy' .
 <http://abc/mondial/10/countries/S> rdf:type :Country ;
       :name 'Sweden';
     :carCode 'S';
     :area 449964;
     :capital <http://abc/mondial/10/countries/S/provinces/Stockholm/cities/Stockholm>;
     :population 8900954;
     :populationGrowth 0.56;
     :infantMortality 4.5;
     :gdpTotal 177300;
     :gdpInd 27;
     :gdpServ 71;
     :gdpAgri 2;
     :inflation 2.6;
     :government 'constitutional monarchy' .
 <http://abc/mondial/10/countries/MC> rdf:type :Country ;
       :name 'Monaco';
     :carCode 'MC';
     :area 1.9;
     :capital <http://abc/mondial/10/countries/MC/cities/Monaco>;
     :population 31719;
     :populationGrowth 0.59;
     :infantMortality 6.9;
     :gdpTotal 788;
     :independenceDate '1419-01-01';
     :government 'constitutional monarchy' .
 <http://abc/mondial/10/countries/GBZ> rdf:type :Country ;
       :name 'Gibraltar';
     :carCode 'GBZ';
     :area 6.5;
     :capital <http://abc/mondial/10/countries/GBZ/cities/Gibraltar>;
     :population 28765;
     :populationGrowth 0.54;
     :infantMortality 6.9;
     :gdpTotal 205;
     :government 'dependent territory of the UK' .
 <http://abc/mondial/10/countries/GBG> rdf:type :Country ;
       :name 'Guernsey';
     :carCode 'GBG';
     :area 194;
     :capital <http://abc/mondial/10/countries/GBG/cities/SaintPeterPort>;
     :population 62920;
     :populationGrowth 1.28;
     :infantMortality 9.2;
     :inflation 7;
     :government 'British crown dependency' .
 <http://abc/mondial/10/countries/V> rdf:type :Country ;
       :name 'Holy See';
     :carCode 'V';
     :area 0.44;
     :capital <http://abc/mondial/10/countries/V/cities/VaticanCity>;
     :population 840;
     :independenceDate '1929-02-11';
     :government 'monarchical sacerdotal state' .
 <http://abc/mondial/10/countries/IS> rdf:type :Country ;
       :name 'Iceland';
     :carCode 'IS';
     :area 103000;
     :capital <http://abc/mondial/10/countries/IS/cities/Reykjavik>;
     :population 270292;
     :populationGrowth 0.83;
     :infantMortality 4.3;
     :gdpTotal 5000;
     :gdpInd 22.1;
     :gdpServ 68.3;
     :gdpAgri 9.6;
     :inflation 2.5;
     :independenceDate '1944-06-17';
     :government 'republic' .
 <http://abc/mondial/10/countries/IRL> rdf:type :Country ;
       :name 'Ireland';
     :carCode 'IRL';
     :area 70280;
     :capital <http://abc/mondial/10/countries/IRL/cities/Dublin>;
     :population 3566833;
     :populationGrowth -0.22;
     :infantMortality 6.4;
     :gdpTotal 54600;
     :gdpInd 35.3;
     :gdpServ 57.9;
     :gdpAgri 6.8;
     :inflation 2.8;
     :independenceDate '1921-12-06';
     :government 'republic' .
 <http://abc/mondial/10/countries/RSM> rdf:type :Country ;
       :name 'San Marino';
     :carCode 'RSM';
     :area 60;
     :capital <http://abc/mondial/10/countries/RSM/cities/SanMarino>;
     :population 24521;
     :populationGrowth 0.82;
     :infantMortality 5.5;
     :gdpTotal 380;
     :inflation 5.5;
     :independenceDate '0301-01-01';
     :government 'republic' .
 <http://abc/mondial/10/countries/GBJ> rdf:type :Country ;
       :name 'Jersey';
     :carCode 'GBJ';
     :area 117;
     :capital <http://abc/mondial/10/countries/GBJ/cities/SaintHelier>;
     :population 87848;
     :populationGrowth 0.77;
     :infantMortality 2.7;
     :government 'British crown dependency' .
 <http://abc/mondial/10/countries/M> rdf:type :Country ;
       :name 'Malta';
     :carCode 'M';
     :area 320;
     :capital <http://abc/mondial/10/countries/M/cities/Valletta>;
     :population 375576;
     :populationGrowth 1.01;
     :infantMortality 6.9;
     :gdpTotal 4400;
     :inflation 5;
     :independenceDate '1964-09-21';
     :government 'parliamentary democracy' .
 <http://abc/mondial/10/countries/GBM> rdf:type :Country ;
       :name 'Man';
     :carCode 'GBM';
     :area 588;
     :capital <http://abc/mondial/10/countries/GBM/cities/Douglas>;
     :population 73837;
     :populationGrowth 0.94;
     :infantMortality 2.4;
     :gdpTotal 780;
     :inflation 7;
     :government 'British crown dependency' .
 <http://abc/mondial/10/countries/MD> rdf:type :Country ;
       :name 'Moldova';
     :carCode 'MD';
     :area 33700;
     :capital <http://abc/mondial/10/countries/MD/cities/Chisinau>;
     :population 4463847;
     :populationGrowth 0.18;
     :infantMortality 47.6;
     :gdpTotal 10400;
     :gdpInd 36;
     :gdpServ 31;
     :gdpAgri 33;
     :inflation 24;
     :independenceDate '1991-08-27';
     :government 'republic' .
 <http://abc/mondial/10/countries/P> rdf:type :Country ;
       :name 'Portugal';
     :carCode 'P';
     :area 92080;
     :capital <http://abc/mondial/10/countries/P/provinces/Lisbon/cities/Lisbon>;
     :population 9865114;
     :populationGrowth 0.02;
     :infantMortality 7.6;
     :gdpTotal 116200;
     :gdpInd 35.8;
     :gdpServ 58.2;
     :gdpAgri 6;
     :inflation 4.6;
     :independenceDate '1140-01-01';
     :government 'republic' .
 <http://abc/mondial/10/countries/SVAX> rdf:type :Country ;
       :name 'Svalbard';
     :carCode 'SVAX';
     :area 62049;
     :capital <http://abc/mondial/10/countries/SVAX/cities/Longyearbyen>;
     :population 2116;
     :populationGrowth -0.02;
     :government 'territory of Norway administered by the Ministry of Industry' .
 <http://abc/mondial/10/countries/GB> rdf:type :Country ;
       :name 'United Kingdom';
     :carCode 'GB';
     :area 244820;
     :capital <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London>;
     :population 58489975;
     :populationGrowth 0.22;
     :infantMortality 6.4;
     :gdpTotal 1138400;
     :gdpInd 27.7;
     :gdpServ 70.6;
     :gdpAgri 1.7;
     :inflation 3.1;
     :independenceDate '1801-01-01';
     :government 'constitutional monarchy' .
 <http://abc/mondial/10/countries/CY> rdf:type :Country ;
       :name 'Cyprus';
     :carCode 'CY';
     :area 9251;
     :capital <http://abc/mondial/10/countries/CY/cities/Nicosia>;
     :population 744609;
     :populationGrowth 1.11;
     :infantMortality 8.4;
     :gdpTotal 7800;
     :gdpInd 24.9;
     :gdpServ 69.5;
     :gdpAgri 5.6;
     :independenceDate '1960-08-16';
     :government 'republic' .
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki>. 
   <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki> rdf:type :Province ;
     :name 'Anatoliki Makedhonia kai Thraki';
     :capital <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki/cities/Komotini>;
     :area 14157;
     :population 574308 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/Attiki>. 
   <http://abc/mondial/10/countries/GR/provinces/Attiki> rdf:type :Province ;
     :name 'Attiki';
     :capital <http://abc/mondial/10/countries/GR/provinces/Attiki/cities/Athens>;
     :area 3808;
     :population 3522769 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/DhytikiEllas>. 
   <http://abc/mondial/10/countries/GR/provinces/DhytikiEllas> rdf:type :Province ;
     :name 'Dhytiki Ellas';
     :capital <http://abc/mondial/10/countries/GR/provinces/DhytikiEllas/cities/Patrai>;
     :area 11350;
     :population 702027 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/DhytikiMakedhonia>. 
   <http://abc/mondial/10/countries/GR/provinces/DhytikiMakedhonia> rdf:type :Province ;
     :name 'Dhytiki Makedhonia';
     :capital <http://abc/mondial/10/countries/GR/provinces/DhytikiMakedhonia/cities/Kozani>;
     :area 9451;
     :population 292751 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi>. 
   <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi> rdf:type :Province ;
     :name 'Ionioi Nisoi';
     :capital <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi/cities/Korfu>;
     :area 2307;
     :population 191003 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/Ipiros>. 
   <http://abc/mondial/10/countries/GR/provinces/Ipiros> rdf:type :Province ;
     :name 'Ipiros';
     :capital <http://abc/mondial/10/countries/GR/provinces/Ipiros/cities/Ioannina>;
     :area 9203;
     :population 339210 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/KedrikiMakedhonia>. 
   <http://abc/mondial/10/countries/GR/provinces/KedrikiMakedhonia> rdf:type :Province ;
     :name 'Kedriki Makedhonia';
     :capital <http://abc/mondial/10/countries/GR/provinces/KedrikiMakedhonia/cities/Thessaloniki>;
     :area 19147;
     :population 1729581 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/Kriti>. 
   <http://abc/mondial/10/countries/GR/provinces/Kriti> rdf:type :Province ;
     :name 'Kriti';
     :capital <http://abc/mondial/10/countries/GR/provinces/Kriti/cities/Iraklion>;
     :area 8336;
     :population 537183 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion>. 
   <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion> rdf:type :Province ;
     :name 'Notion Aiyaion';
     :capital <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion/cities/Ermoupoli>;
     :area 5286;
     :population 262522 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/Peloponnisos>. 
   <http://abc/mondial/10/countries/GR/provinces/Peloponnisos> rdf:type :Province ;
     :name 'Peloponnisos';
     :capital <http://abc/mondial/10/countries/GR/provinces/Peloponnisos/cities/Tripoli>;
     :area 15490;
     :population 605663 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/StereaEllas>. 
   <http://abc/mondial/10/countries/GR/provinces/StereaEllas> rdf:type :Province ;
     :name 'Sterea Ellas';
     :capital <http://abc/mondial/10/countries/GR/provinces/StereaEllas/cities/Lamia>;
     :area 15549;
     :population 578876 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/Thessalia>. 
   <http://abc/mondial/10/countries/GR/provinces/Thessalia> rdf:type :Province ;
     :name 'Thessalia';
     :capital <http://abc/mondial/10/countries/GR/provinces/Thessalia/cities/Larisa>;
     :area 14037;
     :population 731030 . 
 <http://abc/mondial/10/countries/GR> :hasProvince 
   <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion>. 
   <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion> rdf:type :Province ;
     :name 'Voreion Aiyaion';
     :capital <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion/cities/Mytilini>;
     :area 3836;
     :population 189541 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Alsace>. 
   <http://abc/mondial/10/countries/F/provinces/Alsace> rdf:type :Province ;
     :name 'Alsace';
     :capital <http://abc/mondial/10/countries/F/provinces/Alsace/cities/Strasbourg>;
     :area 8280;
     :population 1624000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Aquitaine>. 
   <http://abc/mondial/10/countries/F/provinces/Aquitaine> rdf:type :Province ;
     :name 'Aquitaine';
     :capital <http://abc/mondial/10/countries/F/provinces/Aquitaine/cities/Bordeaux>;
     :area 41309;
     :population 2796000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Auvergne>. 
   <http://abc/mondial/10/countries/F/provinces/Auvergne> rdf:type :Province ;
     :name 'Auvergne';
     :capital <http://abc/mondial/10/countries/F/provinces/Auvergne/cities/ClermontFerrand>;
     :area 26013;
     :population 1321000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/BasseNormandie>. 
   <http://abc/mondial/10/countries/F/provinces/BasseNormandie> rdf:type :Province ;
     :name 'Basse Normandie';
     :capital <http://abc/mondial/10/countries/F/provinces/BasseNormandie/cities/Caen>;
     :area 17589;
     :population 1391000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Bretagne>. 
   <http://abc/mondial/10/countries/F/provinces/Bretagne> rdf:type :Province ;
     :name 'Bretagne';
     :capital <http://abc/mondial/10/countries/F/provinces/Bretagne/cities/Rennes>;
     :area 27209;
     :population 2796000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Bourgogne>. 
   <http://abc/mondial/10/countries/F/provinces/Bourgogne> rdf:type :Province ;
     :name 'Bourgogne';
     :capital <http://abc/mondial/10/countries/F/provinces/Bourgogne/cities/Dijon>;
     :area 31582;
     :population 1609000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Centre>. 
   <http://abc/mondial/10/countries/F/provinces/Centre> rdf:type :Province ;
     :name 'Centre';
     :capital <http://abc/mondial/10/countries/F/provinces/Centre/cities/Orleans>;
     :area 39151;
     :population 2371000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne>. 
   <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne> rdf:type :Province ;
     :name 'Champagne Ardenne';
     :capital <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne/cities/ChalonsenChampagne>;
     :area 25606;
     :population 1348000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Corse>. 
   <http://abc/mondial/10/countries/F/provinces/Corse> rdf:type :Province ;
     :name 'Corse';
     :capital <http://abc/mondial/10/countries/F/provinces/Corse/cities/Ajaccio>;
     :area 8680;
     :population 250000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/FrancheComte>. 
   <http://abc/mondial/10/countries/F/provinces/FrancheComte> rdf:type :Province ;
     :name 'Franche Comte';
     :capital <http://abc/mondial/10/countries/F/provinces/FrancheComte/cities/Besancon>;
     :area 16202;
     :population 1097000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/HauteNormandie>. 
   <http://abc/mondial/10/countries/F/provinces/HauteNormandie> rdf:type :Province ;
     :name 'Haute Normandie';
     :capital <http://abc/mondial/10/countries/F/provinces/HauteNormandie/cities/Rouen>;
     :area 12318;
     :population 1737000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/IledeFrance>. 
   <http://abc/mondial/10/countries/F/provinces/IledeFrance> rdf:type :Province ;
     :name 'Ile de France';
     :capital <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris>;
     :area 12011;
     :population 10660000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon>. 
   <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon> rdf:type :Province ;
     :name 'Languedoc Roussillon';
     :capital <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon/cities/Montpellier>;
     :area 27376;
     :population 2115000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Limousin>. 
   <http://abc/mondial/10/countries/F/provinces/Limousin> rdf:type :Province ;
     :name 'Limousin';
     :capital <http://abc/mondial/10/countries/F/provinces/Limousin/cities/Limoges>;
     :area 16942;
     :population 723000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Lorraine>. 
   <http://abc/mondial/10/countries/F/provinces/Lorraine> rdf:type :Province ;
     :name 'Lorraine';
     :capital <http://abc/mondial/10/countries/F/provinces/Lorraine/cities/Metz>;
     :area 23547;
     :population 2306000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/MidiPyrenees>. 
   <http://abc/mondial/10/countries/F/provinces/MidiPyrenees> rdf:type :Province ;
     :name 'Midi Pyrenees';
     :capital <http://abc/mondial/10/countries/F/provinces/MidiPyrenees/cities/Toulouse>;
     :area 45349;
     :population 2431000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/NordPasdeCalais>. 
   <http://abc/mondial/10/countries/F/provinces/NordPasdeCalais> rdf:type :Province ;
     :name 'Nord Pas de Calais';
     :capital <http://abc/mondial/10/countries/F/provinces/NordPasdeCalais/cities/Lille>;
     :area 12413;
     :population 3965000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire>. 
   <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire> rdf:type :Province ;
     :name 'Pays de la Loire';
     :capital <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire/cities/Nantes>;
     :area 32082;
     :population 3059000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/Picardie>. 
   <http://abc/mondial/10/countries/F/provinces/Picardie> rdf:type :Province ;
     :name 'Picardie';
     :capital <http://abc/mondial/10/countries/F/provinces/Picardie/cities/Amiens>;
     :area 19399;
     :population 1811000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/PoitouCharentes>. 
   <http://abc/mondial/10/countries/F/provinces/PoitouCharentes> rdf:type :Province ;
     :name 'Poitou Charentes';
     :capital <http://abc/mondial/10/countries/F/provinces/PoitouCharentes/cities/Poitiers>;
     :area 25809;
     :population 1595000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur>. 
   <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur> rdf:type :Province ;
     :name 'Provence Cote dAzur';
     :capital <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur/cities/Marseille>;
     :area 31400;
     :population 4258000 . 
 <http://abc/mondial/10/countries/F> :hasProvince 
   <http://abc/mondial/10/countries/F/provinces/RhoneAlpes>. 
   <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> rdf:type :Province ;
     :name 'Rhone Alpes';
     :capital <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Lyon>;
     :area 43698;
     :population 5351000 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Andalusia>. 
   <http://abc/mondial/10/countries/E/provinces/Andalusia> rdf:type :Province ;
     :name 'Andalusia';
     :capital <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Sevilla>;
     :area 87600;
     :population 7053043 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Aragon>. 
   <http://abc/mondial/10/countries/E/provinces/Aragon> rdf:type :Province ;
     :name 'Aragon';
     :capital <http://abc/mondial/10/countries/E/provinces/Aragon/cities/Zaragoza>;
     :area 47720;
     :population 1183576 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Asturias>. 
   <http://abc/mondial/10/countries/E/provinces/Asturias> rdf:type :Province ;
     :name 'Asturias';
     :capital <http://abc/mondial/10/countries/E/provinces/Asturias/cities/Oviedo>;
     :area 10604;
     :population 1083388 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/BalearicIslands>. 
   <http://abc/mondial/10/countries/E/provinces/BalearicIslands> rdf:type :Province ;
     :name 'Balearic Islands';
     :capital <http://abc/mondial/10/countries/E/provinces/BalearicIslands/cities/PalmadeMallorca>;
     :area 4992;
     :population 736865 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/BasqueCountry>. 
   <http://abc/mondial/10/countries/E/provinces/BasqueCountry> rdf:type :Province ;
     :name 'Basque Country';
     :capital <http://abc/mondial/10/countries/E/provinces/BasqueCountry/cities/VitoriaGasteiz>;
     :area 7235;
     :population 2075561 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/CanaryIslands>. 
   <http://abc/mondial/10/countries/E/provinces/CanaryIslands> rdf:type :Province ;
     :name 'Canary Islands';
     :capital <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/SantaCruzdeTenerife>;
     :area 7447;
     :population 1534897 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Cantabria>. 
   <http://abc/mondial/10/countries/E/provinces/Cantabria> rdf:type :Province ;
     :name 'Cantabria';
     :capital <http://abc/mondial/10/countries/E/provinces/Cantabria/cities/Santander>;
     :area 5321;
     :population 526090 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/CastileandLeon>. 
   <http://abc/mondial/10/countries/E/provinces/CastileandLeon> rdf:type :Province ;
     :name 'Castile and Leon';
     :capital <http://abc/mondial/10/countries/E/provinces/CastileandLeon/cities/Valladolid>;
     :area 94224;
     :population 2504371 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/CastileLaMancha>. 
   <http://abc/mondial/10/countries/E/provinces/CastileLaMancha> rdf:type :Province ;
     :name 'Castile La Mancha';
     :capital <http://abc/mondial/10/countries/E/provinces/CastileLaMancha/cities/Toledo>;
     :area 79462;
     :population 1656179 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Catalonia>. 
   <http://abc/mondial/10/countries/E/provinces/Catalonia> rdf:type :Province ;
     :name 'Catalonia';
     :capital <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Barcelona>;
     :area 32113;
     :population 6090107 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Estremadura>. 
   <http://abc/mondial/10/countries/E/provinces/Estremadura> rdf:type :Province ;
     :name 'Estremadura';
     :capital <http://abc/mondial/10/countries/E/provinces/Estremadura/cities/Merida>;
     :area 41635;
     :population 1050590 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Galicia>. 
   <http://abc/mondial/10/countries/E/provinces/Galicia> rdf:type :Province ;
     :name 'Galicia';
     :capital <http://abc/mondial/10/countries/E/provinces/Galicia/cities/SantiagodeCompostella>;
     :area 29574;
     :population 2720761 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Madrid>. 
   <http://abc/mondial/10/countries/E/provinces/Madrid> rdf:type :Province ;
     :name 'Madrid';
     :capital <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Madrid>;
     :area 8028;
     :population 5034548 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Murcia>. 
   <http://abc/mondial/10/countries/E/provinces/Murcia> rdf:type :Province ;
     :name 'Murcia';
     :capital <http://abc/mondial/10/countries/E/provinces/Murcia/cities/Murcia>;
     :area 11314;
     :population 1070401 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Navarre>. 
   <http://abc/mondial/10/countries/E/provinces/Navarre> rdf:type :Province ;
     :name 'Navarre';
     :capital <http://abc/mondial/10/countries/E/provinces/Navarre/cities/Pamplona>;
     :area 10391;
     :population 523614 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Rioja>. 
   <http://abc/mondial/10/countries/E/provinces/Rioja> rdf:type :Province ;
     :name 'Rioja';
     :capital <http://abc/mondial/10/countries/E/provinces/Rioja/cities/Logrono>;
     :area 5045;
     :population 263437 . 
 <http://abc/mondial/10/countries/E> :hasProvince 
   <http://abc/mondial/10/countries/E/provinces/Valencia>. 
   <http://abc/mondial/10/countries/E/provinces/Valencia> rdf:type :Province ;
     :name 'Valencia';
     :capital <http://abc/mondial/10/countries/E/provinces/Valencia/cities/Valencia>;
     :area 23255;
     :population 3909047 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/Burgenland>. 
   <http://abc/mondial/10/countries/A/provinces/Burgenland> rdf:type :Province ;
     :name 'Burgenland';
     :capital <http://abc/mondial/10/countries/A/provinces/Burgenland/cities/Eisenstadt>;
     :area 3965;
     :population 273000 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/Carinthia>. 
   <http://abc/mondial/10/countries/A/provinces/Carinthia> rdf:type :Province ;
     :name 'Carinthia';
     :capital <http://abc/mondial/10/countries/A/provinces/Carinthia/cities/Klagenfurt>;
     :area 9533;
     :population 559000 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/Vorarlberg>. 
   <http://abc/mondial/10/countries/A/provinces/Vorarlberg> rdf:type :Province ;
     :name 'Vorarlberg';
     :capital <http://abc/mondial/10/countries/A/provinces/Vorarlberg/cities/Bregenz>;
     :area 2601;
     :population 341000 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/Vienna>. 
   <http://abc/mondial/10/countries/A/provinces/Vienna> rdf:type :Province ;
     :name 'Vienna';
     :capital <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna>;
     :area 415;
     :population 1583000 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/UpperAustria>. 
   <http://abc/mondial/10/countries/A/provinces/UpperAustria> rdf:type :Province ;
     :name 'Upper Austria';
     :capital <http://abc/mondial/10/countries/A/provinces/UpperAustria/cities/Linz>;
     :area 11979;
     :population 1373000 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/Tyrol>. 
   <http://abc/mondial/10/countries/A/provinces/Tyrol> rdf:type :Province ;
     :name 'Tyrol';
     :capital <http://abc/mondial/10/countries/A/provinces/Tyrol/cities/Innsbruck>;
     :area 12647;
     :population 649000 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/Styria>. 
   <http://abc/mondial/10/countries/A/provinces/Styria> rdf:type :Province ;
     :name 'Styria';
     :capital <http://abc/mondial/10/countries/A/provinces/Styria/cities/Graz>;
     :area 16386;
     :population 1203000 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/Salzburg>. 
   <http://abc/mondial/10/countries/A/provinces/Salzburg> rdf:type :Province ;
     :name 'Salzburg';
     :capital <http://abc/mondial/10/countries/A/provinces/Salzburg/cities/Salzburg>;
     :area 7154;
     :population 501000 . 
 <http://abc/mondial/10/countries/A> :hasProvince 
   <http://abc/mondial/10/countries/A/provinces/LowerAustria>. 
   <http://abc/mondial/10/countries/A/provinces/LowerAustria> rdf:type :Province ;
     :name 'Lower Austria';
     :capital <http://abc/mondial/10/countries/A/provinces/LowerAustria/cities/St.Polten>;
     :area 19170;
     :population 1507000 . 
 <http://abc/mondial/10/countries/CZ> :hasProvince 
   <http://abc/mondial/10/countries/CZ/provinces/Jihocesky>. 
   <http://abc/mondial/10/countries/CZ/provinces/Jihocesky> rdf:type :Province ;
     :name 'Jihocesky';
     :capital <http://abc/mondial/10/countries/CZ/provinces/Jihocesky/cities/CeskeBudejovice>;
     :area 11345;
     :population 702000 . 
 <http://abc/mondial/10/countries/CZ> :hasProvince 
   <http://abc/mondial/10/countries/CZ/provinces/Jihomoravsky>. 
   <http://abc/mondial/10/countries/CZ/provinces/Jihomoravsky> rdf:type :Province ;
     :name 'Jihomoravsky';
     :capital <http://abc/mondial/10/countries/CZ/provinces/Jihomoravsky/cities/Brno>;
     :area 15028;
     :population 2059000 . 
 <http://abc/mondial/10/countries/CZ> :hasProvince 
   <http://abc/mondial/10/countries/CZ/provinces/Severocesky>. 
   <http://abc/mondial/10/countries/CZ/provinces/Severocesky> rdf:type :Province ;
     :name 'Severocesky';
     :capital <http://abc/mondial/10/countries/CZ/provinces/Severocesky/cities/UstinadLabem>;
     :area 7819;
     :population 1190000 . 
 <http://abc/mondial/10/countries/CZ> :hasProvince 
   <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky>. 
   <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky> rdf:type :Province ;
     :name 'Severomoravsky';
     :capital <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky/cities/Ostrava>;
     :area 11067;
     :population 1976000 . 
 <http://abc/mondial/10/countries/CZ> :hasProvince 
   <http://abc/mondial/10/countries/CZ/provinces/Praha>. 
   <http://abc/mondial/10/countries/CZ/provinces/Praha> rdf:type :Province ;
     :name 'Praha';
     :capital <http://abc/mondial/10/countries/CZ/provinces/Praha/cities/Prague>;
     :area 11490;
     :population 2329000 . 
 <http://abc/mondial/10/countries/CZ> :hasProvince 
   <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky>. 
   <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky> rdf:type :Province ;
     :name 'Vychodocesky';
     :capital <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky/cities/HradecKralove>;
     :area 11240;
     :population 1240000 . 
 <http://abc/mondial/10/countries/CZ> :hasProvince 
   <http://abc/mondial/10/countries/CZ/provinces/Zapadocesky>. 
   <http://abc/mondial/10/countries/CZ/provinces/Zapadocesky> rdf:type :Province ;
     :name 'Zapadocesky';
     :capital <http://abc/mondial/10/countries/CZ/provinces/Zapadocesky/cities/Plzen>;
     :area 10875;
     :population 869000 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg>. 
   <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> rdf:type :Province ;
     :name 'Baden Wurttemberg';
     :capital <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Stuttgart>;
     :area 35742;
     :population 10272069 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Bayern>. 
   <http://abc/mondial/10/countries/D/provinces/Bayern> rdf:type :Province ;
     :name 'Bayern';
     :capital <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Munich>;
     :area 70546;
     :population 11921944 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Berlin>. 
   <http://abc/mondial/10/countries/D/provinces/Berlin> rdf:type :Province ;
     :name 'Berlin';
     :capital <http://abc/mondial/10/countries/D/provinces/Berlin/cities/Berlin>;
     :area 889;
     :population 3472009 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Brandenburg>. 
   <http://abc/mondial/10/countries/D/provinces/Brandenburg> rdf:type :Province ;
     :name 'Brandenburg';
     :capital <http://abc/mondial/10/countries/D/provinces/Brandenburg/cities/Potsdam>;
     :area 29480;
     :population 2536747 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Bremen>. 
   <http://abc/mondial/10/countries/D/provinces/Bremen> rdf:type :Province ;
     :name 'Bremen';
     :capital <http://abc/mondial/10/countries/D/provinces/Bremen/cities/Bremen>;
     :area 404;
     :population 680000 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Hamburg>. 
   <http://abc/mondial/10/countries/D/provinces/Hamburg> rdf:type :Province ;
     :name 'Hamburg';
     :capital <http://abc/mondial/10/countries/D/provinces/Hamburg/cities/Hamburg>;
     :area 755;
     :population 1705872 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Hessen>. 
   <http://abc/mondial/10/countries/D/provinces/Hessen> rdf:type :Province ;
     :name 'Hessen';
     :capital <http://abc/mondial/10/countries/D/provinces/Hessen/cities/Wiesbaden>;
     :area 21115;
     :population 5980693 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern>. 
   <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern> rdf:type :Province ;
     :name 'Mecklenburg Vorpommern';
     :capital <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern/cities/Schwerin>;
     :area 23170;
     :population 1832298 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Niedersachsen>. 
   <http://abc/mondial/10/countries/D/provinces/Niedersachsen> rdf:type :Province ;
     :name 'Niedersachsen';
     :capital <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Hannover>;
     :area 47609;
     :population 7715363 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen>. 
   <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> rdf:type :Province ;
     :name 'Nordrhein Westfalen';
     :capital <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Dusseldorf>;
     :area 34077;
     :population 17816079 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz>. 
   <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> rdf:type :Province ;
     :name 'Rheinland Pfalz';
     :capital <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Mainz>;
     :area 19851;
     :population 3951573 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Saarland>. 
   <http://abc/mondial/10/countries/D/provinces/Saarland> rdf:type :Province ;
     :name 'Saarland';
     :capital <http://abc/mondial/10/countries/D/provinces/Saarland/cities/Saarbrucken>;
     :area 2570;
     :population 1084201 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Sachsen>. 
   <http://abc/mondial/10/countries/D/provinces/Sachsen> rdf:type :Province ;
     :name 'Sachsen';
     :capital <http://abc/mondial/10/countries/D/provinces/Sachsen/cities/Dresden>;
     :area 18412;
     :population 4584345 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt>. 
   <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt> rdf:type :Province ;
     :name 'Sachsen Anhalt';
     :capital <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt/cities/Magdeburg>;
     :area 20446;
     :population 2759213 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein>. 
   <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> rdf:type :Province ;
     :name 'Schleswig Holstein';
     :capital <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein/cities/Kiel>;
     :area 15738;
     :population 2708392 . 
 <http://abc/mondial/10/countries/D> :hasProvince 
   <http://abc/mondial/10/countries/D/provinces/Thuringen>. 
   <http://abc/mondial/10/countries/D/provinces/Thuringen> rdf:type :Province ;
     :name 'Thuringen';
     :capital <http://abc/mondial/10/countries/D/provinces/Thuringen/cities/Erfurt>;
     :area 16171;
     :population 2517776 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Baranya>. 
   <http://abc/mondial/10/countries/H/provinces/Baranya> rdf:type :Province ;
     :name 'Baranya';
     :capital <http://abc/mondial/10/countries/H/provinces/Pecs-munic.-/cities/Pecs>;
     :area 4487;
     :population 417100 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/BacsKiskun>. 
   <http://abc/mondial/10/countries/H/provinces/BacsKiskun> rdf:type :Province ;
     :name 'Bacs Kiskun';
     :capital <http://abc/mondial/10/countries/H/provinces/BacsKiskun/cities/Kecskemet>;
     :area 8363;
     :population 540800 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Bekes>. 
   <http://abc/mondial/10/countries/H/provinces/Bekes> rdf:type :Province ;
     :name 'Bekes';
     :capital <http://abc/mondial/10/countries/H/provinces/Bekes/cities/Bekescaba>;
     :area 5632;
     :population 404000 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/BorsodAbaujZemplen>. 
   <http://abc/mondial/10/countries/H/provinces/BorsodAbaujZemplen> rdf:type :Province ;
     :name 'Borsod Abauj Zemplen';
     :capital <http://abc/mondial/10/countries/H/provinces/Miskolc-munic.-/cities/Miskolc>;
     :area 7248;
     :population 749100 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Csongrad>. 
   <http://abc/mondial/10/countries/H/provinces/Csongrad> rdf:type :Province ;
     :name 'Csongrad';
     :capital <http://abc/mondial/10/countries/H/provinces/Csongrad/cities/Hodmezovasarhely>;
     :area 4263;
     :population 437600 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Fejer>. 
   <http://abc/mondial/10/countries/H/provinces/Fejer> rdf:type :Province ;
     :name 'Fejer';
     :capital <http://abc/mondial/10/countries/H/provinces/Fejer/cities/Szekesfehervar>;
     :area 4374;
     :population 422500 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/GyorSopron>. 
   <http://abc/mondial/10/countries/H/provinces/GyorSopron> rdf:type :Province ;
     :name 'Gyor Sopron';
     :capital <http://abc/mondial/10/countries/H/provinces/Gyor-munic.-/cities/Gyor>;
     :area 4012;
     :population 426800 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/HajduBihar>. 
   <http://abc/mondial/10/countries/H/provinces/HajduBihar> rdf:type :Province ;
     :name 'Hajdu Bihar';
     :capital <http://abc/mondial/10/countries/H/provinces/Debrecen-munic.-/cities/Debrecen>;
     :area 6212;
     :population 549700 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Heves>. 
   <http://abc/mondial/10/countries/H/provinces/Heves> rdf:type :Province ;
     :name 'Heves';
     :capital <http://abc/mondial/10/countries/H/provinces/Heves/cities/Eger>;
     :area 3637;
     :population 330200 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/KomaromEsztergom>. 
   <http://abc/mondial/10/countries/H/provinces/KomaromEsztergom> rdf:type :Province ;
     :name 'Komarom Esztergom';
     :capital <http://abc/mondial/10/countries/H/provinces/KomaromEsztergom/cities/Tatabanya>;
     :area 2250;
     :population 312900 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Nograd>. 
   <http://abc/mondial/10/countries/H/provinces/Nograd> rdf:type :Province ;
     :name 'Nograd';
     :capital <http://abc/mondial/10/countries/H/provinces/Nograd/cities/Salgotarjan>;
     :area 2544;
     :population 222700 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Pest>. 
   <http://abc/mondial/10/countries/H/provinces/Pest> rdf:type :Province ;
     :name 'Pest';
     :capital <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-/cities/Budapest>;
     :area 6394;
     :population 957900 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Somogy>. 
   <http://abc/mondial/10/countries/H/provinces/Somogy> rdf:type :Province ;
     :name 'Somogy';
     :capital <http://abc/mondial/10/countries/H/provinces/Somogy/cities/Kaposvar>;
     :area 6035;
     :population 340000 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/SzabolcsSzatmar>. 
   <http://abc/mondial/10/countries/H/provinces/SzabolcsSzatmar> rdf:type :Province ;
     :name 'Szabolcs Szatmar';
     :capital <http://abc/mondial/10/countries/H/provinces/SzabolcsSzatmar/cities/Nyiregyhaza>;
     :area 5938;
     :population 563500 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Szolnok>. 
   <http://abc/mondial/10/countries/H/provinces/Szolnok> rdf:type :Province ;
     :name 'Szolnok';
     :capital <http://abc/mondial/10/countries/H/provinces/Szolnok/cities/Szolnok>;
     :area 5608;
     :population 420900 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Tolna>. 
   <http://abc/mondial/10/countries/H/provinces/Tolna> rdf:type :Province ;
     :name 'Tolna';
     :capital <http://abc/mondial/10/countries/H/provinces/Tolna/cities/Szekszard>;
     :area 3702;
     :population 251000 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Vas>. 
   <http://abc/mondial/10/countries/H/provinces/Vas> rdf:type :Province ;
     :name 'Vas';
     :capital <http://abc/mondial/10/countries/H/provinces/Vas/cities/Szombathely>;
     :area 3337;
     :population 273900 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Veszprem>. 
   <http://abc/mondial/10/countries/H/provinces/Veszprem> rdf:type :Province ;
     :name 'Veszprem';
     :capital <http://abc/mondial/10/countries/H/provinces/Veszprem/cities/Veszprem>;
     :area 4689;
     :population 378300 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Zala>. 
   <http://abc/mondial/10/countries/H/provinces/Zala> rdf:type :Province ;
     :name 'Zala';
     :capital <http://abc/mondial/10/countries/H/provinces/Zala/cities/Zalaegerszeg>;
     :area 3786;
     :population 302600 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Budapest-munic.->. 
   <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-> rdf:type :Province ;
     :name 'Budapest (munic.)';
     :capital <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-/cities/Budapest>;
     :area 525;
     :population 2008500 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Debrecen-munic.->. 
   <http://abc/mondial/10/countries/H/provinces/Debrecen-munic.-> rdf:type :Province ;
     :name 'Debrecen (munic.)';
     :capital <http://abc/mondial/10/countries/H/provinces/Debrecen-munic.-/cities/Debrecen>;
     :area 446;
     :population 217300 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Gyor-munic.->. 
   <http://abc/mondial/10/countries/H/provinces/Gyor-munic.-> rdf:type :Province ;
     :name 'Gyor (munic.)';
     :capital <http://abc/mondial/10/countries/H/provinces/Gyor-munic.-/cities/Gyor>;
     :area 175;
     :population 130600 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Miskolc-munic.->. 
   <http://abc/mondial/10/countries/H/provinces/Miskolc-munic.-> rdf:type :Province ;
     :name 'Miskolc (munic.)';
     :capital <http://abc/mondial/10/countries/H/provinces/Miskolc-munic.-/cities/Miskolc>;
     :area 224;
     :population 191000 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Pecs-munic.->. 
   <http://abc/mondial/10/countries/H/provinces/Pecs-munic.-> rdf:type :Province ;
     :name 'Pecs (munic.)';
     :capital <http://abc/mondial/10/countries/H/provinces/Pecs-munic.-/cities/Pecs>;
     :area 113;
     :population 171600 . 
 <http://abc/mondial/10/countries/H> :hasProvince 
   <http://abc/mondial/10/countries/H/provinces/Szeged-munic.->. 
   <http://abc/mondial/10/countries/H/provinces/Szeged-munic.-> rdf:type :Province ;
     :name 'Szeged (munic.)';
     :capital <http://abc/mondial/10/countries/H/provinces/Szeged-munic.-/cities/Szeged>;
     :area 145;
     :population 178500 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Piemonte>. 
   <http://abc/mondial/10/countries/I/provinces/Piemonte> rdf:type :Province ;
     :name 'Piemonte';
     :capital <http://abc/mondial/10/countries/I/provinces/Piemonte/cities/Turin>;
     :area 25399;
     :population 4307000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/ValledAosta>. 
   <http://abc/mondial/10/countries/I/provinces/ValledAosta> rdf:type :Province ;
     :name 'Valle dAosta';
     :capital <http://abc/mondial/10/countries/I/provinces/ValledAosta/cities/Aosta>;
     :area 3262;
     :population 118000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Lombardia>. 
   <http://abc/mondial/10/countries/I/provinces/Lombardia> rdf:type :Province ;
     :name 'Lombardia';
     :capital <http://abc/mondial/10/countries/I/provinces/Lombardia/cities/Milan>;
     :area 23857;
     :population 8901000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige>. 
   <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige> rdf:type :Province ;
     :name 'Trentino Alto Adige';
     :capital <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige/cities/Bolzano>;
     :area 13618;
     :population 904000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Veneto>. 
   <http://abc/mondial/10/countries/I/provinces/Veneto> rdf:type :Province ;
     :name 'Veneto';
     :capital <http://abc/mondial/10/countries/I/provinces/Veneto/cities/Venice>;
     :area 18364;
     :population 4415000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/FriuliVeneziaGiulia>. 
   <http://abc/mondial/10/countries/I/provinces/FriuliVeneziaGiulia> rdf:type :Province ;
     :name 'Friuli Venezia Giulia';
     :capital <http://abc/mondial/10/countries/I/provinces/FriuliVeneziaGiulia/cities/Trieste>;
     :area 7845;
     :population 1193000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Liguria>. 
   <http://abc/mondial/10/countries/I/provinces/Liguria> rdf:type :Province ;
     :name 'Liguria';
     :capital <http://abc/mondial/10/countries/I/provinces/Liguria/cities/Genua>;
     :area 5418;
     :population 1663000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna>. 
   <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> rdf:type :Province ;
     :name 'Emilia Romagna';
     :capital <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Bologna>;
     :area 22123;
     :population 3924000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Toscana>. 
   <http://abc/mondial/10/countries/I/provinces/Toscana> rdf:type :Province ;
     :name 'Toscana';
     :capital <http://abc/mondial/10/countries/I/provinces/Toscana/cities/Firenze>;
     :area 22992;
     :population 3528000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Umbria>. 
   <http://abc/mondial/10/countries/I/provinces/Umbria> rdf:type :Province ;
     :name 'Umbria';
     :capital <http://abc/mondial/10/countries/I/provinces/Umbria/cities/Perugia>;
     :area 8456;
     :population 819000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Marche>. 
   <http://abc/mondial/10/countries/I/provinces/Marche> rdf:type :Province ;
     :name 'Marche';
     :capital <http://abc/mondial/10/countries/I/provinces/Marche/cities/Ancona>;
     :area 9693;
     :population 1438000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Lazio>. 
   <http://abc/mondial/10/countries/I/provinces/Lazio> rdf:type :Province ;
     :name 'Lazio';
     :capital <http://abc/mondial/10/countries/I/provinces/Lazio/cities/Rome>;
     :area 17203;
     :population 5185000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Abruzzo>. 
   <http://abc/mondial/10/countries/I/provinces/Abruzzo> rdf:type :Province ;
     :name 'Abruzzo';
     :capital <http://abc/mondial/10/countries/I/provinces/Abruzzo/cities/LAquila>;
     :area 10794;
     :population 1263000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Molise>. 
   <http://abc/mondial/10/countries/I/provinces/Molise> rdf:type :Province ;
     :name 'Molise';
     :capital <http://abc/mondial/10/countries/I/provinces/Molise/cities/Campobasso>;
     :area 4438;
     :population 332000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Campania>. 
   <http://abc/mondial/10/countries/I/provinces/Campania> rdf:type :Province ;
     :name 'Campania';
     :capital <http://abc/mondial/10/countries/I/provinces/Campania/cities/Napoli>;
     :area 13595;
     :population 5709000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Puglia>. 
   <http://abc/mondial/10/countries/I/provinces/Puglia> rdf:type :Province ;
     :name 'Puglia';
     :capital <http://abc/mondial/10/countries/I/provinces/Puglia/cities/Bari>;
     :area 19348;
     :population 4066000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Basilicata>. 
   <http://abc/mondial/10/countries/I/provinces/Basilicata> rdf:type :Province ;
     :name 'Basilicata';
     :capital <http://abc/mondial/10/countries/I/provinces/Basilicata/cities/Potenza>;
     :area 9992;
     :population 611000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Calabria>. 
   <http://abc/mondial/10/countries/I/provinces/Calabria> rdf:type :Province ;
     :name 'Calabria';
     :capital <http://abc/mondial/10/countries/I/provinces/Calabria/cities/Catanzaro>;
     :area 15080;
     :population 2080000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Sicilia>. 
   <http://abc/mondial/10/countries/I/provinces/Sicilia> rdf:type :Province ;
     :name 'Sicilia';
     :capital <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Palermo>;
     :area 25709;
     :population 5025000 . 
 <http://abc/mondial/10/countries/I> :hasProvince 
   <http://abc/mondial/10/countries/I/provinces/Sardegna>. 
   <http://abc/mondial/10/countries/I/provinces/Sardegna> rdf:type :Province ;
     :name 'Sardegna';
     :capital <http://abc/mondial/10/countries/I/provinces/Sardegna/cities/Cagliari>;
     :area 24090;
     :population 1657000 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/AG>. 
   <http://abc/mondial/10/countries/CH/provinces/AG> rdf:type :Province ;
     :name 'AG';
     :capital <http://abc/mondial/10/countries/CH/provinces/AG/cities/Aarau>;
     :area 1403;
     :population 528887 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/AR>. 
   <http://abc/mondial/10/countries/CH/provinces/AR> rdf:type :Province ;
     :name 'AR';
     :capital <http://abc/mondial/10/countries/CH/provinces/AR/cities/Herisau>;
     :area 242;
     :population 54104 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/AI>. 
   <http://abc/mondial/10/countries/CH/provinces/AI> rdf:type :Province ;
     :name 'AI';
     :capital <http://abc/mondial/10/countries/CH/provinces/AI/cities/Appenzell>;
     :area 172;
     :population 14750 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/BL>. 
   <http://abc/mondial/10/countries/CH/provinces/BL> rdf:type :Province ;
     :name 'BL';
     :capital <http://abc/mondial/10/countries/CH/provinces/BL/cities/Liestal>;
     :area 517;
     :population 252331 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/BS>. 
   <http://abc/mondial/10/countries/CH/provinces/BS> rdf:type :Province ;
     :name 'BS';
     :capital <http://abc/mondial/10/countries/CH/provinces/BS/cities/Basel>;
     :area 37;
     :population 195759 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/BE>. 
   <http://abc/mondial/10/countries/CH/provinces/BE> rdf:type :Province ;
     :name 'BE';
     :capital <http://abc/mondial/10/countries/CH/provinces/BE/cities/Bern>;
     :area 5960;
     :population 941952 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/FR>. 
   <http://abc/mondial/10/countries/CH/provinces/FR> rdf:type :Province ;
     :name 'FR';
     :capital <http://abc/mondial/10/countries/CH/provinces/FR/cities/Fribourg>;
     :area 1670;
     :population 224552 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/GE>. 
   <http://abc/mondial/10/countries/CH/provinces/GE> rdf:type :Province ;
     :name 'GE';
     :capital <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva>;
     :area 282;
     :population 395466 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/GL>. 
   <http://abc/mondial/10/countries/CH/provinces/GL> rdf:type :Province ;
     :name 'GL';
     :capital <http://abc/mondial/10/countries/CH/provinces/GL/cities/Glarus>;
     :area 685;
     :population 39410 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/GR>. 
   <http://abc/mondial/10/countries/CH/provinces/GR> rdf:type :Province ;
     :name 'GR';
     :capital <http://abc/mondial/10/countries/CH/provinces/GR/cities/Chur>;
     :area 7105;
     :population 185063 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/JU>. 
   <http://abc/mondial/10/countries/CH/provinces/JU> rdf:type :Province ;
     :name 'JU';
     :capital <http://abc/mondial/10/countries/CH/provinces/JU/cities/Delemont>;
     :area 836;
     :population 69188 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/LU>. 
   <http://abc/mondial/10/countries/CH/provinces/LU> rdf:type :Province ;
     :name 'LU';
     :capital <http://abc/mondial/10/countries/CH/provinces/LU/cities/Luzern>;
     :area 1493;
     :population 340536 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/NE>. 
   <http://abc/mondial/10/countries/CH/provinces/NE> rdf:type :Province ;
     :name 'NE';
     :capital <http://abc/mondial/10/countries/CH/provinces/NE/cities/Neuchatel>;
     :area 803;
     :population 165258 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/NW>. 
   <http://abc/mondial/10/countries/CH/provinces/NW> rdf:type :Province ;
     :name 'NW';
     :capital <http://abc/mondial/10/countries/CH/provinces/NW/cities/Stans>;
     :area 276;
     :population 36466 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/OW>. 
   <http://abc/mondial/10/countries/CH/provinces/OW> rdf:type :Province ;
     :name 'OW';
     :capital <http://abc/mondial/10/countries/CH/provinces/OW/cities/Sarnen>;
     :area 490;
     :population 31310 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/SG>. 
   <http://abc/mondial/10/countries/CH/provinces/SG> rdf:type :Province ;
     :name 'SG';
     :capital <http://abc/mondial/10/countries/CH/provinces/SG/cities/SanktGallen>;
     :area 2025;
     :population 442350 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/SH>. 
   <http://abc/mondial/10/countries/CH/provinces/SH> rdf:type :Province ;
     :name 'SH';
     :capital <http://abc/mondial/10/countries/CH/provinces/SH/cities/Schaffhausen>;
     :area 298;
     :population 74035 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/SZ>. 
   <http://abc/mondial/10/countries/CH/provinces/SZ> rdf:type :Province ;
     :name 'SZ';
     :capital <http://abc/mondial/10/countries/CH/provinces/SZ/cities/Schwyz>;
     :area 908;
     :population 122409 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/SO>. 
   <http://abc/mondial/10/countries/CH/provinces/SO> rdf:type :Province ;
     :name 'SO';
     :capital <http://abc/mondial/10/countries/CH/provinces/SO/cities/Solothurn>;
     :area 790;
     :population 239264 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/TG>. 
   <http://abc/mondial/10/countries/CH/provinces/TG> rdf:type :Province ;
     :name 'TG';
     :capital <http://abc/mondial/10/countries/CH/provinces/TG/cities/Frauenfeld>;
     :area 990;
     :population 223372 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/TI>. 
   <http://abc/mondial/10/countries/CH/provinces/TI> rdf:type :Province ;
     :name 'TI';
     :capital <http://abc/mondial/10/countries/CH/provinces/TI/cities/Bellinzona>;
     :area 2812;
     :population 305199 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/UR>. 
   <http://abc/mondial/10/countries/CH/provinces/UR> rdf:type :Province ;
     :name 'UR';
     :capital <http://abc/mondial/10/countries/CH/provinces/UR/cities/Altdorf>;
     :area 1076;
     :population 35876 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/VS>. 
   <http://abc/mondial/10/countries/CH/provinces/VS> rdf:type :Province ;
     :name 'VS';
     :capital <http://abc/mondial/10/countries/CH/provinces/VS/cities/Sion>;
     :area 5224;
     :population 271291 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/VD>. 
   <http://abc/mondial/10/countries/CH/provinces/VD> rdf:type :Province ;
     :name 'VD';
     :capital <http://abc/mondial/10/countries/CH/provinces/VD/cities/Lausanne>;
     :area 3211;
     :population 605677 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/ZG>. 
   <http://abc/mondial/10/countries/CH/provinces/ZG> rdf:type :Province ;
     :name 'ZG';
     :capital <http://abc/mondial/10/countries/CH/provinces/ZG/cities/Zug>;
     :area 238;
     :population 92392 . 
 <http://abc/mondial/10/countries/CH> :hasProvince 
   <http://abc/mondial/10/countries/CH/provinces/ZH>. 
   <http://abc/mondial/10/countries/CH/provinces/ZH> rdf:type :Province ;
     :name 'ZH';
     :capital <http://abc/mondial/10/countries/CH/provinces/ZH/cities/Zurich>;
     :area 1728;
     :population 1175457 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Warszwaskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Warszwaskie> rdf:type :Province ;
     :name 'Warszwaskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Warszwaskie/cities/Warsaw>;
     :area 3788;
     :population 2421000 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Bialskopodlaskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Bialskopodlaskie> rdf:type :Province ;
     :name 'Bialskopodlaskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Bialskopodlaskie/cities/BialaPodlaska>;
     :area 5348;
     :population 306700 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Bialostockie>. 
   <http://abc/mondial/10/countries/PL/provinces/Bialostockie> rdf:type :Province ;
     :name 'Bialostockie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Bialostockie/cities/Bialystok>;
     :area 10055;
     :population 697000 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Bielskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Bielskie> rdf:type :Province ;
     :name 'Bielskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Bielskie/cities/BielskoBiala>;
     :area 3704;
     :population 911500 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Bydgoskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Bydgoskie> rdf:type :Province ;
     :name 'Bydgoskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Bydgoskie/cities/Bydgoszcz>;
     :area 10349;
     :population 1120300 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Chelmskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Chelmskie> rdf:type :Province ;
     :name 'Chelmskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Chelmskie/cities/Chelm>;
     :area 3866;
     :population 248500 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Ciechanowskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Ciechanowskie> rdf:type :Province ;
     :name 'Ciechanowskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Ciechanowskie/cities/Ciechanow>;
     :area 6362;
     :population 431400 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Czestochowskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Czestochowskie> rdf:type :Province ;
     :name 'Czestochowskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Czestochowskie/cities/Czestochowa>;
     :area 6182;
     :population 748000 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Elblaskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Elblaskie> rdf:type :Province ;
     :name 'Elblaskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Elblaskie/cities/Elblag>;
     :area 6103;
     :population 483200 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Gdanskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Gdanskie> rdf:type :Province ;
     :name 'Gdanskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Gdanskie/cities/Gdansk>;
     :area 7394;
     :population 1445000 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Gorzowskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Gorzowskie> rdf:type :Province ;
     :name 'Gorzowskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Gorzowskie/cities/GorzowWielkopolskie>;
     :area 8484;
     :population 505600 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Jeleniogorskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Jeleniogorskie> rdf:type :Province ;
     :name 'Jeleniogorskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Jeleniogorskie/cities/JeleniaGora>;
     :area 4379;
     :population 519200 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Kaliskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Kaliskie> rdf:type :Province ;
     :name 'Kaliskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Kaliskie/cities/Kalisz>;
     :area 6512;
     :population 715600 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Katowickie>. 
   <http://abc/mondial/10/countries/PL/provinces/Katowickie> rdf:type :Province ;
     :name 'Katowickie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Katowice>;
     :area 6650;
     :population 4013200 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Kieleckie>. 
   <http://abc/mondial/10/countries/PL/provinces/Kieleckie> rdf:type :Province ;
     :name 'Kieleckie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Kieleckie/cities/Kielce>;
     :area 9211;
     :population 1127700 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Koninskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Koninskie> rdf:type :Province ;
     :name 'Koninskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Koninskie/cities/Konin>;
     :area 5139;
     :population 472400 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Koszalinskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Koszalinskie> rdf:type :Province ;
     :name 'Koszalinskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Koszalinskie/cities/Koszalin>;
     :area 8470;
     :population 513700 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Krakowskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Krakowskie> rdf:type :Province ;
     :name 'Krakowskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Krakowskie/cities/Krakow>;
     :area 3254;
     :population 1238100 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Krosnienskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Krosnienskie> rdf:type :Province ;
     :name 'Krosnienskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Krosnienskie/cities/Krosno>;
     :area 5702;
     :population 500700 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Legnickie>. 
   <http://abc/mondial/10/countries/PL/provinces/Legnickie> rdf:type :Province ;
     :name 'Legnickie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Legnickie/cities/Legnica>;
     :area 4037;
     :population 521500 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Leszczynskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Leszczynskie> rdf:type :Province ;
     :name 'Leszczynskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Leszczynskie/cities/Leszno>;
     :area 4154;
     :population 391500 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Lubelskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Lubelskie> rdf:type :Province ;
     :name 'Lubelskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Lubelskie/cities/Lublin>;
     :area 6792;
     :population 1022600 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Lomzynskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Lomzynskie> rdf:type :Province ;
     :name 'Lomzynskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Lomzynskie/cities/Lomza>;
     :area 6684;
     :population 349000 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Lodzkie>. 
   <http://abc/mondial/10/countries/PL/provinces/Lodzkie> rdf:type :Province ;
     :name 'Lodzkie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Lodzkie/cities/Lodz>;
     :area 1523;
     :population 1132400 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Nowosadeckie>. 
   <http://abc/mondial/10/countries/PL/provinces/Nowosadeckie> rdf:type :Province ;
     :name 'Nowosadeckie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Nowosadeckie/cities/NowySacz>;
     :area 5576;
     :population 709500 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Olsztynskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Olsztynskie> rdf:type :Province ;
     :name 'Olsztynskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Olsztynskie/cities/Olsztyn>;
     :area 12327;
     :population 761300 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Opolskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Opolskie> rdf:type :Province ;
     :name 'Opolskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Opolskie/cities/Opole>;
     :area 8535;
     :population 1023800 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Ostroleckie>. 
   <http://abc/mondial/10/countries/PL/provinces/Ostroleckie> rdf:type :Province ;
     :name 'Ostroleckie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Ostroleckie/cities/Ostroleka>;
     :area 6498;
     :population 400500 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Pilskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Pilskie> rdf:type :Province ;
     :name 'Pilskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Pilskie/cities/Pila>;
     :area 8205;
     :population 485700 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Piotrkowskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Piotrkowskie> rdf:type :Province ;
     :name 'Piotrkowskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Piotrkowskie/cities/PiotrkowTrybunalski>;
     :area 6266;
     :population 644200 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Plockie>. 
   <http://abc/mondial/10/countries/PL/provinces/Plockie> rdf:type :Province ;
     :name 'Plockie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Plockie/cities/Plock>;
     :area 5117;
     :population 518600 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Poznanskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Poznanskie> rdf:type :Province ;
     :name 'Poznanskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Poznanskie/cities/Poznan>;
     :area 8151;
     :population 1344200 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Przemyskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Przemyskie> rdf:type :Province ;
     :name 'Przemyskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Przemyskie/cities/Przemysl>;
     :area 4437;
     :population 409600 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Radomskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Radomskie> rdf:type :Province ;
     :name 'Radomskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Radomskie/cities/Radom>;
     :area 7294;
     :population 755500 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Rzeszowskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Rzeszowskie> rdf:type :Province ;
     :name 'Rzeszowskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Rzeszowskie/cities/Rzeszow>;
     :area 4397;
     :population 734100 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Siedleckie>. 
   <http://abc/mondial/10/countries/PL/provinces/Siedleckie> rdf:type :Province ;
     :name 'Siedleckie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Siedleckie/cities/Siedlce>;
     :area 8499;
     :population 655300 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Sieradzkie>. 
   <http://abc/mondial/10/countries/PL/provinces/Sieradzkie> rdf:type :Province ;
     :name 'Sieradzkie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Sieradzkie/cities/Sieradz>;
     :area 4869;
     :population 408700 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Skierniewickie>. 
   <http://abc/mondial/10/countries/PL/provinces/Skierniewickie> rdf:type :Province ;
     :name 'Skierniewickie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Skierniewickie/cities/Skierniewice>;
     :area 3960;
     :population 421700 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Slupskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Slupskie> rdf:type :Province ;
     :name 'Slupskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Slupskie/cities/Slupsk>;
     :area 7453;
     :population 419300 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Suwalskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Suwalskie> rdf:type :Province ;
     :name 'Suwalskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Suwalskie/cities/Suwalki>;
     :area 10490;
     :population 477100 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Szczecinskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Szczecinskie> rdf:type :Province ;
     :name 'Szczecinskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Szczecinskie/cities/Szczecin>;
     :area 9982;
     :population 979500 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Tarnobrzeskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Tarnobrzeskie> rdf:type :Province ;
     :name 'Tarnobrzeskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Tarnobrzeskie/cities/Tarnobrzeg>;
     :area 6283;
     :population 604300 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Tarnowskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Tarnowskie> rdf:type :Province ;
     :name 'Tarnowskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Tarnowskie/cities/Tarnow>;
     :area 4151;
     :population 678400 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Torunskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Torunskie> rdf:type :Province ;
     :name 'Torunskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Torunskie/cities/Torun>;
     :area 5348;
     :population 662600 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Walbrzyskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Walbrzyskie> rdf:type :Province ;
     :name 'Walbrzyskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Walbrzyskie/cities/Walbrzych>;
     :area 4168;
     :population 740000 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Wloclawskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Wloclawskie> rdf:type :Province ;
     :name 'Wloclawskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Wloclawskie/cities/Wloclawek>;
     :area 4402;
     :population 430800 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Wroclawskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Wroclawskie> rdf:type :Province ;
     :name 'Wroclawskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Wroclawskie/cities/Wroclaw>;
     :area 6287;
     :population 1132800 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Zamojskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Zamojskie> rdf:type :Province ;
     :name 'Zamojskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Zamojskie/cities/Zamosc>;
     :area 6980;
     :population 490800 . 
 <http://abc/mondial/10/countries/PL> :hasProvince 
   <http://abc/mondial/10/countries/PL/provinces/Zielonogorskie>. 
   <http://abc/mondial/10/countries/PL/provinces/Zielonogorskie> rdf:type :Province ;
     :name 'Zielonogorskie';
     :capital <http://abc/mondial/10/countries/PL/provinces/Zielonogorskie/cities/ZielonaGora>;
     :area 8868;
     :population 664700 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Cherkaska>. 
   <http://abc/mondial/10/countries/UA/provinces/Cherkaska> rdf:type :Province ;
     :name 'Cherkaska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Cherkaska/cities/Cherkasy>;
     :area 20900;
     :population 1530900 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Chernihivska>. 
   <http://abc/mondial/10/countries/UA/provinces/Chernihivska> rdf:type :Province ;
     :name 'Chernihivska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Chernihivska/cities/Chernihiv>;
     :area 31900;
     :population 938600 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Chernivetska>. 
   <http://abc/mondial/10/countries/UA/provinces/Chernivetska> rdf:type :Province ;
     :name 'Chernivetska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Chernivetska/cities/Chernivtsi>;
     :area 8100;
     :population 1405800 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska>. 
   <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska> rdf:type :Province ;
     :name 'Dnipropetrovska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska/cities/Dnipropetrovsk>;
     :area 31900;
     :population 3908700 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Donetska>. 
   <http://abc/mondial/10/countries/UA/provinces/Donetska> rdf:type :Province ;
     :name 'Donetska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Donetska/cities/Donetsk>;
     :area 26500;
     :population 5346700 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/IvanoFrankivska>. 
   <http://abc/mondial/10/countries/UA/provinces/IvanoFrankivska> rdf:type :Province ;
     :name 'Ivano Frankivska';
     :capital <http://abc/mondial/10/countries/UA/provinces/IvanoFrankivska/cities/IvanoFrankivsk>;
     :area 13900;
     :population 1442900 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Kharkivska>. 
   <http://abc/mondial/10/countries/UA/provinces/Kharkivska> rdf:type :Province ;
     :name 'Kharkivska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Kharkivska/cities/Kharkiv>;
     :area 31400;
     :population 3194800 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Khersonska>. 
   <http://abc/mondial/10/countries/UA/provinces/Khersonska> rdf:type :Province ;
     :name 'Khersonska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Khersonska/cities/Kherson>;
     :area 28500;
     :population 1258700 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Khmelnytska>. 
   <http://abc/mondial/10/countries/UA/provinces/Khmelnytska> rdf:type :Province ;
     :name 'Khmelnytska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Khmelnytska/cities/Khmelnytskyy>;
     :area 20600;
     :population 1520600 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Kyyivska>. 
   <http://abc/mondial/10/countries/UA/provinces/Kyyivska> rdf:type :Province ;
     :name 'Kyyivska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Kyyivska/cities/Kiev>;
     :area 28900;
     :population 4589800 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Kirovohradska>. 
   <http://abc/mondial/10/countries/UA/provinces/Kirovohradska> rdf:type :Province ;
     :name 'Kirovohradska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Kirovohradska/cities/Kirovohrad>;
     :area 24600;
     :population 1245300 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Luhanska>. 
   <http://abc/mondial/10/countries/UA/provinces/Luhanska> rdf:type :Province ;
     :name 'Luhanska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Luhanska/cities/Luhansk>;
     :area 26700;
     :population 2871100 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Lvivska>. 
   <http://abc/mondial/10/countries/UA/provinces/Lvivska> rdf:type :Province ;
     :name 'Lvivska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Lvivska/cities/Lviv>;
     :area 21800;
     :population 2764400 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Mykolayivska>. 
   <http://abc/mondial/10/countries/UA/provinces/Mykolayivska> rdf:type :Province ;
     :name 'Mykolayivska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Mykolayivska/cities/Mykolayiv>;
     :area 24600;
     :population 1342400 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Odeska>. 
   <http://abc/mondial/10/countries/UA/provinces/Odeska> rdf:type :Province ;
     :name 'Odeska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Odeska/cities/Odesa>;
     :area 33300;
     :population 2635300 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Poltavska>. 
   <http://abc/mondial/10/countries/UA/provinces/Poltavska> rdf:type :Province ;
     :name 'Poltavska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Poltavska/cities/Poltava>;
     :area 28800;
     :population 1756900 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Rivnenska>. 
   <http://abc/mondial/10/countries/UA/provinces/Rivnenska> rdf:type :Province ;
     :name 'Rivnenska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Rivnenska/cities/Rivne>;
     :area 20100;
     :population 1176800 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Sumska>. 
   <http://abc/mondial/10/countries/UA/provinces/Sumska> rdf:type :Province ;
     :name 'Sumska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Sumska/cities/Sumy>;
     :area 23800;
     :population 1430200 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Ternopilska>. 
   <http://abc/mondial/10/countries/UA/provinces/Ternopilska> rdf:type :Province ;
     :name 'Ternopilska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Ternopilska/cities/Ternopil>;
     :area 13800;
     :population 1175100 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Vinnytska>. 
   <http://abc/mondial/10/countries/UA/provinces/Vinnytska> rdf:type :Province ;
     :name 'Vinnytska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Vinnytska/cities/Vinnytsya>;
     :area 26500;
     :population 1914400 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Volynska>. 
   <http://abc/mondial/10/countries/UA/provinces/Volynska> rdf:type :Province ;
     :name 'Volynska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Volynska/cities/Lutsk>;
     :area 20200;
     :population 1069000 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Zakarpatska>. 
   <http://abc/mondial/10/countries/UA/provinces/Zakarpatska> rdf:type :Province ;
     :name 'Zakarpatska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Zakarpatska/cities/Uzhhorod>;
     :area 12800;
     :population 1265900 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Zaporizka>. 
   <http://abc/mondial/10/countries/UA/provinces/Zaporizka> rdf:type :Province ;
     :name 'Zaporizka';
     :capital <http://abc/mondial/10/countries/UA/provinces/Zaporizka/cities/Zaporizhzhya>;
     :area 27200;
     :population 2099600 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Zhytomyrska>. 
   <http://abc/mondial/10/countries/UA/provinces/Zhytomyrska> rdf:type :Province ;
     :name 'Zhytomyrska';
     :capital <http://abc/mondial/10/countries/UA/provinces/Zhytomyrska/cities/Zhytomyr>;
     :area 29900;
     :population 1510700 . 
 <http://abc/mondial/10/countries/UA> :hasProvince 
   <http://abc/mondial/10/countries/UA/provinces/Krym>. 
   <http://abc/mondial/10/countries/UA/provinces/Krym> rdf:type :Province ;
     :name 'Krym';
     :capital <http://abc/mondial/10/countries/UA/provinces/Krym/cities/Simferopol>;
     :area 27000;
     :population 2549800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia> rdf:type :Province ;
     :name 'Rep. of Karelia';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia/cities/Petrozavodsk>;
     :area 172400;
     :population 785000 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi> rdf:type :Province ;
     :name 'Rep. of Komi';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi/cities/Syktyvkar>;
     :area 415900;
     :population 1185500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast> rdf:type :Province ;
     :name 'Arkhangelskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast/cities/Arkhangelsk>;
     :area 587400;
     :population 1520800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast> rdf:type :Province ;
     :name 'Vologodskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast/cities/Vologda>;
     :area 145700;
     :population 1349800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Murmanskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Murmanskayaoblast> rdf:type :Province ;
     :name 'Murmanskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Murmanskayaoblast/cities/Murmansk>;
     :area 144900;
     :population 1048000 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Kaliningradskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Kaliningradskayaoblast> rdf:type :Province ;
     :name 'Kaliningradskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Kaliningradskayaoblast/cities/Kaliningrad>;
     :area 15100;
     :population 932200 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/SanktPeterburg>. 
   <http://abc/mondial/10/countries/R/provinces/SanktPeterburg> rdf:type :Province ;
     :name 'Sankt Peterburg';
     :capital <http://abc/mondial/10/countries/R/provinces/SanktPeterburg/cities/SanktPeterburg>;
     :area 0;
     :population 4801500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast> rdf:type :Province ;
     :name 'Leningradskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/SanktPeterburg/cities/SanktPeterburg>;
     :area 85900;
     :population 1675900 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Novgorodskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Novgorodskayaoblast> rdf:type :Province ;
     :name 'Novgorodskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Novgorodskayaoblast/cities/Novgorod>;
     :area 55300;
     :population 742600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast> rdf:type :Province ;
     :name 'Pskovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast/cities/Pskov>;
     :area 55300;
     :population 832300 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Bryanskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Bryanskayaoblast> rdf:type :Province ;
     :name 'Bryanskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Bryanskayaoblast/cities/Bryansk>;
     :area 34900;
     :population 1479700 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast> rdf:type :Province ;
     :name 'Vladimirskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast/cities/Vladimir>;
     :area 29000;
     :population 1644700 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Ivanovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Ivanovskayaoblast> rdf:type :Province ;
     :name 'Ivanovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Ivanovskayaoblast/cities/Ivanovo>;
     :area 23900;
     :population 1266400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast> rdf:type :Province ;
     :name 'Kaluzhskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast/cities/Kaluga>;
     :area 29900;
     :population 1097300 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Kostromskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Kostromskayaoblast> rdf:type :Province ;
     :name 'Kostromskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Kostromskayaoblast/cities/Kostroma>;
     :area 60100;
     :population 805700 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Moskva>. 
   <http://abc/mondial/10/countries/R/provinces/Moskva> rdf:type :Province ;
     :name 'Moskva';
     :capital <http://abc/mondial/10/countries/R/provinces/Moskva/cities/Moscow>;
     :area 0;
     :population 8664400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> rdf:type :Province ;
     :name 'Moskovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Moskva/cities/Moscow>;
     :area 47000;
     :population 6596600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Orjolskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Orjolskayaoblast> rdf:type :Province ;
     :name 'Orjolskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Orjolskayaoblast/cities/Orel>;
     :area 24700;
     :population 914000 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Ryazanskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Ryazanskayaoblast> rdf:type :Province ;
     :name 'Ryazanskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Ryazanskayaoblast/cities/Ryazan>;
     :area 39600;
     :population 1325300 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Smolenskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Smolenskayaoblast> rdf:type :Province ;
     :name 'Smolenskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Smolenskayaoblast/cities/Smolensk>;
     :area 49800;
     :population 1172400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Tverskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Tverskayaoblast> rdf:type :Province ;
     :name 'Tverskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Tverskayaoblast/cities/Tver>;
     :area 84100;
     :population 1650600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast> rdf:type :Province ;
     :name 'Tulskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast/cities/Tula>;
     :area 25700;
     :population 1814500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast> rdf:type :Province ;
     :name 'Yaroslavskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast/cities/Yaroslavl>;
     :area 36400;
     :population 1451400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofMariyEl>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofMariyEl> rdf:type :Province ;
     :name 'Rep. of Mariy El';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofMariyEl/cities/YoshkarOla>;
     :area 23200;
     :population 766300 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofMordovia>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofMordovia> rdf:type :Province ;
     :name 'Rep. of Mordovia';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofMordovia/cities/Saransk>;
     :area 26200;
     :population 955800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/ChuvashRepublic>. 
   <http://abc/mondial/10/countries/R/provinces/ChuvashRepublic> rdf:type :Province ;
     :name 'Chuvash Republic';
     :capital <http://abc/mondial/10/countries/R/provinces/ChuvashRepublic/cities/Cheboksary>;
     :area 18300;
     :population 1360800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Kirovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Kirovskayaoblast> rdf:type :Province ;
     :name 'Kirovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Kirovskayaoblast/cities/Kirov>;
     :area 120800;
     :population 1634500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast> rdf:type :Province ;
     :name 'Nizhegorodskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast/cities/NizhniyNovgorod>;
     :area 74800;
     :population 3726400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Belgorodskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Belgorodskayaoblast> rdf:type :Province ;
     :name 'Belgorodskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Belgorodskayaoblast/cities/Belgorod>;
     :area 27100;
     :population 1469100 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Voronezhskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Voronezhskayaoblast> rdf:type :Province ;
     :name 'Voronezhskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Voronezhskayaoblast/cities/Voronezh>;
     :area 52400;
     :population 2503800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Kurskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Kurskayaoblast> rdf:type :Province ;
     :name 'Kurskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Kurskayaoblast/cities/Kursk>;
     :area 29800;
     :population 1346900 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Lipetskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Lipetskayaoblast> rdf:type :Province ;
     :name 'Lipetskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Lipetskayaoblast/cities/Lipetsk>;
     :area 24100;
     :population 1250200 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Tambovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Tambovskayaoblast> rdf:type :Province ;
     :name 'Tambovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Tambovskayaoblast/cities/Tambov>;
     :area 34300;
     :population 1310600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofKalmykiya>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofKalmykiya> rdf:type :Province ;
     :name 'Rep. of Kalmykiya';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofKalmykiya/cities/Elista>;
     :area 76100;
     :population 318500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan> rdf:type :Province ;
     :name 'Rep. of Tatarstan';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan/cities/Kazan>;
     :area 68000;
     :population 3760500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast> rdf:type :Province ;
     :name 'Astrakhanskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast/cities/Astrakhan>;
     :area 44100;
     :population 1028900 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast> rdf:type :Province ;
     :name 'Volgogradskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast/cities/Volgograd>;
     :area 113900;
     :population 2703700 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Penzenskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Penzenskayaoblast> rdf:type :Province ;
     :name 'Penzenskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Penzenskayaoblast/cities/Penza>;
     :area 43200;
     :population 1562300 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast> rdf:type :Province ;
     :name 'Samarskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast/cities/Samara>;
     :area 53600;
     :population 3311500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast> rdf:type :Province ;
     :name 'Saratovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast/cities/Saratov>;
     :area 100200;
     :population 2739500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast> rdf:type :Province ;
     :name 'Ulyanovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast/cities/Simbirsk>;
     :area 37300;
     :population 1495200 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> rdf:type :Province ;
     :name 'Rostovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast/cities/RostovnoDonu>;
     :area 100800;
     :population 4426400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan> rdf:type :Province ;
     :name 'Rep. of Bashkortostan';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan/cities/Ufa>;
     :area 143600;
     :population 4096600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic>. 
   <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic> rdf:type :Province ;
     :name 'Udmurt Republic';
     :capital <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic/cities/Izhevsk>;
     :area 42100;
     :population 1639100 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast> rdf:type :Province ;
     :name 'Orenburgskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast/cities/Orenburg>;
     :area 124000;
     :population 2228600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Permskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Permskayaoblast> rdf:type :Province ;
     :name 'Permskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Permskayaoblast/cities/Perm>;
     :area 160600;
     :population 3009400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofAdygeya>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofAdygeya> rdf:type :Province ;
     :name 'Rep. of Adygeya';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofAdygeya/cities/Maykop>;
     :area 7600;
     :population 450500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofDagestan>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofDagestan> rdf:type :Province ;
     :name 'Rep. of Dagestan';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofDagestan/cities/Makhachkala>;
     :area 50300;
     :population 2097500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofIngushetiya>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofIngushetiya> rdf:type :Province ;
     :name 'Rep. of Ingushetiya';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofIngushetiya/cities/Nazran>;
     :area 3750;
     :population 299700 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/KabardinoBalkarRep.>. 
   <http://abc/mondial/10/countries/R/provinces/KabardinoBalkarRep.> rdf:type :Province ;
     :name 'Kabardino Balkar Rep.';
     :capital <http://abc/mondial/10/countries/R/provinces/KabardinoBalkarRep./cities/Nalchik>;
     :area 12500;
     :population 789900 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/KarachayevoCherkesskRep.>. 
   <http://abc/mondial/10/countries/R/provinces/KarachayevoCherkesskRep.> rdf:type :Province ;
     :name 'Karachayevo Cherkessk Rep.';
     :capital <http://abc/mondial/10/countries/R/provinces/KarachayevoCherkesskRep./cities/Cherkessk>;
     :area 14100;
     :population 436300 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofNorthOssetiya>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofNorthOssetiya> rdf:type :Province ;
     :name 'Rep. of North Ossetiya';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofNorthOssetiya/cities/Vladikavkaz>;
     :area 8000;
     :population 662600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/ChechenRep.>. 
   <http://abc/mondial/10/countries/R/provinces/ChechenRep.> rdf:type :Province ;
     :name 'Chechen Rep.';
     :capital <http://abc/mondial/10/countries/R/provinces/ChechenRep./cities/Grozny>;
     :area 12300;
     :population 865100 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray>. 
   <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray> rdf:type :Province ;
     :name 'Krasnodarsky kray';
     :capital <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray/cities/Krasnodar>;
     :area 76000;
     :population 5043900 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Stavropolskykray>. 
   <http://abc/mondial/10/countries/R/provinces/Stavropolskykray> rdf:type :Province ;
     :name 'Stavropolsky kray';
     :capital <http://abc/mondial/10/countries/R/provinces/Stavropolskykray/cities/Stavropol>;
     :area 66500;
     :population 2667000 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Kurganskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Kurganskayaoblast> rdf:type :Province ;
     :name 'Kurganskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Kurganskayaoblast/cities/Kurgan>;
     :area 71000;
     :population 1112200 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast> rdf:type :Province ;
     :name 'Sverdlovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast/cities/Yekaterinburg>;
     :area 194300;
     :population 4686300 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast> rdf:type :Province ;
     :name 'Chelyabinskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast/cities/Chelyabinsk>;
     :area 87900;
     :population 3688700 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofAltay>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofAltay> rdf:type :Province ;
     :name 'Rep. of Altay';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofAltay/cities/GornoAltaysk>;
     :area 92600;
     :population 201600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Altayskiykray>. 
   <http://abc/mondial/10/countries/R/provinces/Altayskiykray> rdf:type :Province ;
     :name 'Altayskiy kray';
     :capital <http://abc/mondial/10/countries/R/provinces/Altayskiykray/cities/Barnaul>;
     :area 169100;
     :population 2690100 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast> rdf:type :Province ;
     :name 'Kemerovskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast/cities/Kemerovo>;
     :area 95500;
     :population 3063500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Novosibirskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Novosibirskayaoblast> rdf:type :Province ;
     :name 'Novosibirskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Novosibirskayaoblast/cities/Novosibirsk>;
     :area 178200;
     :population 2748600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Omskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Omskayaoblast> rdf:type :Province ;
     :name 'Omskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Omskayaoblast/cities/Omsk>;
     :area 139700;
     :population 2176400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Tomskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Tomskayaoblast> rdf:type :Province ;
     :name 'Tomskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Tomskayaoblast/cities/Tomsk>;
     :area 316900;
     :population 1077600 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> rdf:type :Province ;
     :name 'Tyumenskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast/cities/Tyumen>;
     :area 1435200;
     :population 3169900 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya> rdf:type :Province ;
     :name 'Rep. of Buryatiya';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya/cities/UlanUde>;
     :area 351300;
     :population 1052500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofTyva>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofTyva> rdf:type :Province ;
     :name 'Rep. of Tyva';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofTyva/cities/Kyzyl>;
     :area 170500;
     :population 309700 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofKhakassiya>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofKhakassiya> rdf:type :Province ;
     :name 'Rep. of Khakassiya';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofKhakassiya/cities/Abakan>;
     :area 61900;
     :population 585800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray>. 
   <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> rdf:type :Province ;
     :name 'Krasnoyarskiy kray';
     :capital <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray/cities/Krasnoyarsk>;
     :area 2339700;
     :population 3105900 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> rdf:type :Province ;
     :name 'Irkutskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/Irkutsk>;
     :area 767900;
     :population 2795200 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast> rdf:type :Province ;
     :name 'Chitinskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast/cities/Chita>;
     :area 431500;
     :population 1295000 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha>. 
   <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha> rdf:type :Province ;
     :name 'Rep. of Sakha';
     :capital <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha/cities/Yakutsk>;
     :area 3103200;
     :population 1022800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Yevreyskayaavt.oblast>. 
   <http://abc/mondial/10/countries/R/provinces/Yevreyskayaavt.oblast> rdf:type :Province ;
     :name 'Yevreyskaya avt. oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Yevreyskayaavt.oblast/cities/Birobidzhan>;
     :area 36000;
     :population 209900 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Chukotskyao>. 
   <http://abc/mondial/10/countries/R/provinces/Chukotskyao> rdf:type :Province ;
     :name 'Chukotsky ao';
     :capital <http://abc/mondial/10/countries/R/provinces/Chukotskyao/cities/Anadyr>;
     :area 737700;
     :population 90500 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Primorskykray>. 
   <http://abc/mondial/10/countries/R/provinces/Primorskykray> rdf:type :Province ;
     :name 'Primorsky kray';
     :capital <http://abc/mondial/10/countries/R/provinces/Primorskykray/cities/Vladivostok>;
     :area 165900;
     :population 2255400 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray>. 
   <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray> rdf:type :Province ;
     :name 'Khabarovskiy kray';
     :capital <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray/cities/Khabarovsk>;
     :area 752600;
     :population 1571200 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Amurskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Amurskayaoblast> rdf:type :Province ;
     :name 'Amurskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Amurskayaoblast/cities/Blagoveshchensk>;
     :area 363700;
     :population 1037800 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast> rdf:type :Province ;
     :name 'Kamchatskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast/cities/PetropavlovskKamchatsky>;
     :area 472300;
     :population 411100 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> rdf:type :Province ;
     :name 'Magadanskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast/cities/Magadan>;
     :area 461400;
     :population 258200 . 
 <http://abc/mondial/10/countries/R> :hasProvince 
   <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast>. 
   <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast> rdf:type :Province ;
     :name 'Sakhalinskaya oblast';
     :capital <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast/cities/YuzhnoSakhalinsk>;
     :area 87100;
     :population 647800 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/Antwerp>. 
   <http://abc/mondial/10/countries/B/provinces/Antwerp> rdf:type :Province ;
     :name 'Antwerp';
     :capital <http://abc/mondial/10/countries/B/provinces/Antwerp/cities/Antwerp>;
     :area 2867;
     :population 1610695 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/Brabant>. 
   <http://abc/mondial/10/countries/B/provinces/Brabant> rdf:type :Province ;
     :name 'Brabant';
     :capital <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels>;
     :area 3358;
     :population 2253794 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/EastFlanders>. 
   <http://abc/mondial/10/countries/B/provinces/EastFlanders> rdf:type :Province ;
     :name 'East Flanders';
     :capital <http://abc/mondial/10/countries/B/provinces/EastFlanders/cities/Ghent>;
     :area 2982;
     :population 1340056 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/Hainaut>. 
   <http://abc/mondial/10/countries/B/provinces/Hainaut> rdf:type :Province ;
     :name 'Hainaut';
     :capital <http://abc/mondial/10/countries/B/provinces/Hainaut/cities/Mons>;
     :area 3787;
     :population 1283252 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/Liege>. 
   <http://abc/mondial/10/countries/B/provinces/Liege> rdf:type :Province ;
     :name 'Liege';
     :capital <http://abc/mondial/10/countries/B/provinces/Liege/cities/Liege>;
     :area 3862;
     :population 1006081 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/Limburg>. 
   <http://abc/mondial/10/countries/B/provinces/Limburg> rdf:type :Province ;
     :name 'Limburg';
     :capital <http://abc/mondial/10/countries/B/provinces/Limburg/cities/Hasselt>;
     :area 2422;
     :population 755593 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/Luxembourg>. 
   <http://abc/mondial/10/countries/B/provinces/Luxembourg> rdf:type :Province ;
     :name 'Luxembourg';
     :capital <http://abc/mondial/10/countries/B/provinces/Luxembourg/cities/Arlon>;
     :area 4441;
     :population 234664 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/Namur>. 
   <http://abc/mondial/10/countries/B/provinces/Namur> rdf:type :Province ;
     :name 'Namur';
     :capital <http://abc/mondial/10/countries/B/provinces/Namur/cities/Namur>;
     :area 3665;
     :population 426305 . 
 <http://abc/mondial/10/countries/B> :hasProvince 
   <http://abc/mondial/10/countries/B/provinces/WestFlanders>. 
   <http://abc/mondial/10/countries/B/provinces/WestFlanders> rdf:type :Province ;
     :name 'West Flanders';
     :capital <http://abc/mondial/10/countries/B/provinces/WestFlanders/cities/Brugge>;
     :area 3134;
     :population 1111557 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Groningen>. 
   <http://abc/mondial/10/countries/NL/provinces/Groningen> rdf:type :Province ;
     :name 'Groningen';
     :capital <http://abc/mondial/10/countries/NL/provinces/Groningen/cities/Groningen>;
     :area 2344;
     :population 557995 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Friesland>. 
   <http://abc/mondial/10/countries/NL/provinces/Friesland> rdf:type :Province ;
     :name 'Friesland';
     :capital <http://abc/mondial/10/countries/NL/provinces/Friesland/cities/Leeuwarden>;
     :area 3361;
     :population 609579 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Drenthe>. 
   <http://abc/mondial/10/countries/NL/provinces/Drenthe> rdf:type :Province ;
     :name 'Drenthe';
     :capital <http://abc/mondial/10/countries/NL/provinces/Drenthe/cities/Assen>;
     :area 2652;
     :population 454864 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Overijssel>. 
   <http://abc/mondial/10/countries/NL/provinces/Overijssel> rdf:type :Province ;
     :name 'Overijssel';
     :capital <http://abc/mondial/10/countries/NL/provinces/Overijssel/cities/Zwolle>;
     :area 3337;
     :population 1050389 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Flevoland>. 
   <http://abc/mondial/10/countries/NL/provinces/Flevoland> rdf:type :Province ;
     :name 'Flevoland';
     :capital <http://abc/mondial/10/countries/NL/provinces/Flevoland/cities/Lelystad>;
     :area 1425;
     :population 262325 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Gelderland>. 
   <http://abc/mondial/10/countries/NL/provinces/Gelderland> rdf:type :Province ;
     :name 'Gelderland';
     :capital <http://abc/mondial/10/countries/NL/provinces/Gelderland/cities/Arnhem>;
     :area 4995;
     :population 1864732 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Utrecht>. 
   <http://abc/mondial/10/countries/NL/provinces/Utrecht> rdf:type :Province ;
     :name 'Utrecht';
     :capital <http://abc/mondial/10/countries/NL/provinces/Utrecht/cities/Utrecht>;
     :area 1356;
     :population 1063460 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/NoordHolland>. 
   <http://abc/mondial/10/countries/NL/provinces/NoordHolland> rdf:type :Province ;
     :name 'Noord Holland';
     :capital <http://abc/mondial/10/countries/NL/provinces/NoordHolland/cities/Haarlem>;
     :area 265978;
     :population 2463611 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/ZuidHolland>. 
   <http://abc/mondial/10/countries/NL/provinces/ZuidHolland> rdf:type :Province ;
     :name 'Zuid Holland';
     :capital <http://abc/mondial/10/countries/NL/provinces/ZuidHolland/cities/sGravenhage>;
     :area 2859;
     :population 3325064 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Zeeland>. 
   <http://abc/mondial/10/countries/NL/provinces/Zeeland> rdf:type :Province ;
     :name 'Zeeland';
     :capital <http://abc/mondial/10/countries/NL/provinces/Zeeland/cities/Middelburg>;
     :area 1791;
     :population 365846 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/NoordBrabant>. 
   <http://abc/mondial/10/countries/NL/provinces/NoordBrabant> rdf:type :Province ;
     :name 'Noord Brabant';
     :capital <http://abc/mondial/10/countries/NL/provinces/NoordBrabant/cities/sHertogenbosch>;
     :area 4938;
     :population 2276207 . 
 <http://abc/mondial/10/countries/NL> :hasProvince 
   <http://abc/mondial/10/countries/NL/provinces/Limburg>. 
   <http://abc/mondial/10/countries/NL/provinces/Limburg> rdf:type :Province ;
     :name 'Limburg';
     :capital <http://abc/mondial/10/countries/NL/provinces/Limburg/cities/Maastricht>;
     :area 2167;
     :population 1130050 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Alba>. 
   <http://abc/mondial/10/countries/RO/provinces/Alba> rdf:type :Province ;
     :name 'Alba';
     :capital <http://abc/mondial/10/countries/RO/provinces/Alba/cities/AlbaIulia>;
     :area 6231;
     :population 428000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Arad>. 
   <http://abc/mondial/10/countries/RO/provinces/Arad> rdf:type :Province ;
     :name 'Arad';
     :capital <http://abc/mondial/10/countries/RO/provinces/Arad/cities/Arad>;
     :area 7652;
     :population 507000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Arges>. 
   <http://abc/mondial/10/countries/RO/provinces/Arges> rdf:type :Province ;
     :name 'Arges';
     :capital <http://abc/mondial/10/countries/RO/provinces/Arges/cities/Pitesti>;
     :area 6801;
     :population 678000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Bacau>. 
   <http://abc/mondial/10/countries/RO/provinces/Bacau> rdf:type :Province ;
     :name 'Bacau';
     :capital <http://abc/mondial/10/countries/RO/provinces/Bacau/cities/Bacau>;
     :area 6606;
     :population 731000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Bihor>. 
   <http://abc/mondial/10/countries/RO/provinces/Bihor> rdf:type :Province ;
     :name 'Bihor';
     :capital <http://abc/mondial/10/countries/RO/provinces/Bihor/cities/Oradea>;
     :area 7535;
     :population 660000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/BistritaNasaud>. 
   <http://abc/mondial/10/countries/RO/provinces/BistritaNasaud> rdf:type :Province ;
     :name 'Bistrita Nasaud';
     :capital <http://abc/mondial/10/countries/RO/provinces/BistritaNasaud/cities/Bistrita>;
     :area 5305;
     :population 328000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Botosani>. 
   <http://abc/mondial/10/countries/RO/provinces/Botosani> rdf:type :Province ;
     :name 'Botosani';
     :capital <http://abc/mondial/10/countries/RO/provinces/Botosani/cities/Botosani>;
     :area 4965;
     :population 468000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Braila>. 
   <http://abc/mondial/10/countries/RO/provinces/Braila> rdf:type :Province ;
     :name 'Braila';
     :capital <http://abc/mondial/10/countries/RO/provinces/Braila/cities/Braila>;
     :area 4724;
     :population 404000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Brasov>. 
   <http://abc/mondial/10/countries/RO/provinces/Brasov> rdf:type :Province ;
     :name 'Brasov';
     :capital <http://abc/mondial/10/countries/RO/provinces/Brasov/cities/Brasov>;
     :area 5351;
     :population 695000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Bucuresti>. 
   <http://abc/mondial/10/countries/RO/provinces/Bucuresti> rdf:type :Province ;
     :name 'Bucuresti';
     :capital <http://abc/mondial/10/countries/RO/provinces/Bucuresti/cities/Bucharest>;
     :area 1521;
     :population 2319000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Buzau>. 
   <http://abc/mondial/10/countries/RO/provinces/Buzau> rdf:type :Province ;
     :name 'Buzau';
     :capital <http://abc/mondial/10/countries/RO/provinces/Buzau/cities/Buzau>;
     :area 6072;
     :population 524000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Calarasi>. 
   <http://abc/mondial/10/countries/RO/provinces/Calarasi> rdf:type :Province ;
     :name 'Calarasi';
     :capital <http://abc/mondial/10/countries/RO/provinces/Calarasi/cities/Calarasi>;
     :area 5075;
     :population 351000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/CarasSeverin>. 
   <http://abc/mondial/10/countries/RO/provinces/CarasSeverin> rdf:type :Province ;
     :name 'Caras Severin';
     :capital <http://abc/mondial/10/countries/RO/provinces/CarasSeverin/cities/Resita>;
     :area 8503;
     :population 408000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Cluj>. 
   <http://abc/mondial/10/countries/RO/provinces/Cluj> rdf:type :Province ;
     :name 'Cluj';
     :capital <http://abc/mondial/10/countries/RO/provinces/Cluj/cities/ClujNapoca>;
     :area 6650;
     :population 743000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Constanta>. 
   <http://abc/mondial/10/countries/RO/provinces/Constanta> rdf:type :Province ;
     :name 'Constanta';
     :capital <http://abc/mondial/10/countries/RO/provinces/Constanta/cities/Constanta>;
     :area 7055;
     :population 737000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Covasna>. 
   <http://abc/mondial/10/countries/RO/provinces/Covasna> rdf:type :Province ;
     :name 'Covasna';
     :capital <http://abc/mondial/10/countries/RO/provinces/Covasna/cities/SfintuGheorghe>;
     :area 3705;
     :population 238000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Dimbovita>. 
   <http://abc/mondial/10/countries/RO/provinces/Dimbovita> rdf:type :Province ;
     :name 'Dimbovita';
     :capital <http://abc/mondial/10/countries/RO/provinces/Dimbovita/cities/Tirgoviste>;
     :area 4035;
     :population 570000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Dolj>. 
   <http://abc/mondial/10/countries/RO/provinces/Dolj> rdf:type :Province ;
     :name 'Dolj';
     :capital <http://abc/mondial/10/countries/RO/provinces/Dolj/cities/Craiova>;
     :area 7413;
     :population 772000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Galati>. 
   <http://abc/mondial/10/countries/RO/provinces/Galati> rdf:type :Province ;
     :name 'Galati';
     :capital <http://abc/mondial/10/countries/RO/provinces/Galati/cities/Galati>;
     :area 4425;
     :population 642000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Giurgiu>. 
   <http://abc/mondial/10/countries/RO/provinces/Giurgiu> rdf:type :Province ;
     :name 'Giurgiu';
     :capital <http://abc/mondial/10/countries/RO/provinces/Giurgiu/cities/Giurgiu>;
     :area 3810;
     :population 325000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Gorj>. 
   <http://abc/mondial/10/countries/RO/provinces/Gorj> rdf:type :Province ;
     :name 'Gorj';
     :capital <http://abc/mondial/10/countries/RO/provinces/Gorj/cities/TirguJiu>;
     :area 5641;
     :population 388000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Harghita>. 
   <http://abc/mondial/10/countries/RO/provinces/Harghita> rdf:type :Province ;
     :name 'Harghita';
     :capital <http://abc/mondial/10/countries/RO/provinces/Harghita/cities/MiercureaCiuc>;
     :area 6610;
     :population 363000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Hunedoara>. 
   <http://abc/mondial/10/countries/RO/provinces/Hunedoara> rdf:type :Province ;
     :name 'Hunedoara';
     :capital <http://abc/mondial/10/countries/RO/provinces/Hunedoara/cities/Deva>;
     :area 7016;
     :population 567000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Ialomita>. 
   <http://abc/mondial/10/countries/RO/provinces/Ialomita> rdf:type :Province ;
     :name 'Ialomita';
     :capital <http://abc/mondial/10/countries/RO/provinces/Ialomita/cities/Slobozia>;
     :area 4449;
     :population 309000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Iasi>. 
   <http://abc/mondial/10/countries/RO/provinces/Iasi> rdf:type :Province ;
     :name 'Iasi';
     :capital <http://abc/mondial/10/countries/RO/provinces/Iasi/cities/Iasi>;
     :area 5469;
     :population 810000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Maramures>. 
   <http://abc/mondial/10/countries/RO/provinces/Maramures> rdf:type :Province ;
     :name 'Maramures';
     :capital <http://abc/mondial/10/countries/RO/provinces/Maramures/cities/BaiaMare>;
     :area 6215;
     :population 556000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Mehedinti>. 
   <http://abc/mondial/10/countries/RO/provinces/Mehedinti> rdf:type :Province ;
     :name 'Mehedinti';
     :capital <http://abc/mondial/10/countries/RO/provinces/Mehedinti/cities/DrobetaTurnuSeverin>;
     :area 4900;
     :population 329000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Mures>. 
   <http://abc/mondial/10/countries/RO/provinces/Mures> rdf:type :Province ;
     :name 'Mures';
     :capital <http://abc/mondial/10/countries/RO/provinces/Mures/cities/TirguMures>;
     :area 6696;
     :population 621000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Neamt>. 
   <http://abc/mondial/10/countries/RO/provinces/Neamt> rdf:type :Province ;
     :name 'Neamt';
     :capital <http://abc/mondial/10/countries/RO/provinces/Neamt/cities/PiatraNeamt>;
     :area 5890;
     :population 580000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Olt>. 
   <http://abc/mondial/10/countries/RO/provinces/Olt> rdf:type :Province ;
     :name 'Olt';
     :capital <http://abc/mondial/10/countries/RO/provinces/Olt/cities/Slatina>;
     :area 5507;
     :population 535000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Prahova>. 
   <http://abc/mondial/10/countries/RO/provinces/Prahova> rdf:type :Province ;
     :name 'Prahova';
     :capital <http://abc/mondial/10/countries/RO/provinces/Prahova/cities/Ploiesti>;
     :area 4694;
     :population 877000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Salaj>. 
   <http://abc/mondial/10/countries/RO/provinces/Salaj> rdf:type :Province ;
     :name 'Salaj';
     :capital <http://abc/mondial/10/countries/RO/provinces/Salaj/cities/Zalau>;
     :area 3850;
     :population 269000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/SatuMare>. 
   <http://abc/mondial/10/countries/RO/provinces/SatuMare> rdf:type :Province ;
     :name 'Satu Mare';
     :capital <http://abc/mondial/10/countries/RO/provinces/SatuMare/cities/SatuMare>;
     :area 4405;
     :population 417000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Sibiu>. 
   <http://abc/mondial/10/countries/RO/provinces/Sibiu> rdf:type :Province ;
     :name 'Sibiu';
     :capital <http://abc/mondial/10/countries/RO/provinces/Sibiu/cities/Sibiu>;
     :area 5422;
     :population 509000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Suceava>. 
   <http://abc/mondial/10/countries/RO/provinces/Suceava> rdf:type :Province ;
     :name 'Suceava';
     :capital <http://abc/mondial/10/countries/RO/provinces/Suceava/cities/Suceava>;
     :area 8555;
     :population 699000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Teleorman>. 
   <http://abc/mondial/10/countries/RO/provinces/Teleorman> rdf:type :Province ;
     :name 'Teleorman';
     :capital <http://abc/mondial/10/countries/RO/provinces/Teleorman/cities/Alexandria>;
     :area 5760;
     :population 504000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Timis>. 
   <http://abc/mondial/10/countries/RO/provinces/Timis> rdf:type :Province ;
     :name 'Timis';
     :capital <http://abc/mondial/10/countries/RO/provinces/Timis/cities/Timisoara>;
     :area 8692;
     :population 726000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Tulcea>. 
   <http://abc/mondial/10/countries/RO/provinces/Tulcea> rdf:type :Province ;
     :name 'Tulcea';
     :capital <http://abc/mondial/10/countries/RO/provinces/Tulcea/cities/Tulcea>;
     :area 8430;
     :population 275000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Vaslui>. 
   <http://abc/mondial/10/countries/RO/provinces/Vaslui> rdf:type :Province ;
     :name 'Vaslui';
     :capital <http://abc/mondial/10/countries/RO/provinces/Vaslui/cities/Vaslui>;
     :area 5297;
     :population 468000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Vilcea>. 
   <http://abc/mondial/10/countries/RO/provinces/Vilcea> rdf:type :Province ;
     :name 'Vilcea';
     :capital <http://abc/mondial/10/countries/RO/provinces/Vilcea/cities/RimnicuVilcea>;
     :area 5705;
     :population 430000 . 
 <http://abc/mondial/10/countries/RO> :hasProvince 
   <http://abc/mondial/10/countries/RO/provinces/Vrancea>. 
   <http://abc/mondial/10/countries/RO/provinces/Vrancea> rdf:type :Province ;
     :name 'Vrancea';
     :capital <http://abc/mondial/10/countries/RO/provinces/Vrancea/cities/Focsani>;
     :area 4863;
     :population 394000 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Adana>. 
   <http://abc/mondial/10/countries/TR/provinces/Adana> rdf:type :Province ;
     :name 'Adana';
     :capital <http://abc/mondial/10/countries/TR/provinces/Adana/cities/Adana>;
     :area 17253;
     :population 1934907 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Adiyaman>. 
   <http://abc/mondial/10/countries/TR/provinces/Adiyaman> rdf:type :Province ;
     :name 'Adiyaman';
     :capital <http://abc/mondial/10/countries/TR/provinces/Adiyaman/cities/Adiyaman>;
     :area 7614;
     :population 513131 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Afyon>. 
   <http://abc/mondial/10/countries/TR/provinces/Afyon> rdf:type :Province ;
     :name 'Afyon';
     :capital <http://abc/mondial/10/countries/TR/provinces/Afyon/cities/Afyon>;
     :area 14230;
     :population 739223 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Agri>. 
   <http://abc/mondial/10/countries/TR/provinces/Agri> rdf:type :Province ;
     :name 'Agri';
     :capital <http://abc/mondial/10/countries/TR/provinces/Agri/cities/Agri>;
     :area 11376;
     :population 437093 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Aksaray>. 
   <http://abc/mondial/10/countries/TR/provinces/Aksaray> rdf:type :Province ;
     :name 'Aksaray';
     :capital <http://abc/mondial/10/countries/TR/provinces/Aksaray/cities/Aksaray>;
     :area 7626;
     :population 326399 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Amasya>. 
   <http://abc/mondial/10/countries/TR/provinces/Amasya> rdf:type :Province ;
     :name 'Amasya';
     :capital <http://abc/mondial/10/countries/TR/provinces/Amasya/cities/Amasya>;
     :area 5520;
     :population 357191 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Ankara>. 
   <http://abc/mondial/10/countries/TR/provinces/Ankara> rdf:type :Province ;
     :name 'Ankara';
     :capital <http://abc/mondial/10/countries/TR/provinces/Ankara/cities/Ankara>;
     :area 25706;
     :population 3236626 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Antalya>. 
   <http://abc/mondial/10/countries/TR/provinces/Antalya> rdf:type :Province ;
     :name 'Antalya';
     :capital <http://abc/mondial/10/countries/TR/provinces/Antalya/cities/Antalya>;
     :area 20591;
     :population 1132211 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Artvin>. 
   <http://abc/mondial/10/countries/TR/provinces/Artvin> rdf:type :Province ;
     :name 'Artvin';
     :capital <http://abc/mondial/10/countries/TR/provinces/Artvin/cities/Artvin>;
     :area 7436;
     :population 212833 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Aydin>. 
   <http://abc/mondial/10/countries/TR/provinces/Aydin> rdf:type :Province ;
     :name 'Aydin';
     :capital <http://abc/mondial/10/countries/TR/provinces/Aydin/cities/Aydin>;
     :area 8007;
     :population 824816 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Balikesir>. 
   <http://abc/mondial/10/countries/TR/provinces/Balikesir> rdf:type :Province ;
     :name 'Balikesir';
     :capital <http://abc/mondial/10/countries/TR/provinces/Balikesir/cities/Balikesir>;
     :area 14292;
     :population 973314 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Batman>. 
   <http://abc/mondial/10/countries/TR/provinces/Batman> rdf:type :Province ;
     :name 'Batman';
     :capital <http://abc/mondial/10/countries/TR/provinces/Batman/cities/Batman>;
     :area 4694;
     :population 344669 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Bayburt>. 
   <http://abc/mondial/10/countries/TR/provinces/Bayburt> rdf:type :Province ;
     :name 'Bayburt';
     :capital <http://abc/mondial/10/countries/TR/provinces/Bayburt/cities/Bayburt>;
     :area 3652;
     :population 107330 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Bilecik>. 
   <http://abc/mondial/10/countries/TR/provinces/Bilecik> rdf:type :Province ;
     :name 'Bilecik';
     :capital <http://abc/mondial/10/countries/TR/provinces/Bilecik/cities/Bilecik>;
     :area 4307;
     :population 175526 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Bingol>. 
   <http://abc/mondial/10/countries/TR/provinces/Bingol> rdf:type :Province ;
     :name 'Bingol';
     :capital <http://abc/mondial/10/countries/TR/provinces/Bingol/cities/Bingol>;
     :area 8125;
     :population 250966 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Bitlis>. 
   <http://abc/mondial/10/countries/TR/provinces/Bitlis> rdf:type :Province ;
     :name 'Bitlis';
     :capital <http://abc/mondial/10/countries/TR/provinces/Bitlis/cities/Bitlis>;
     :area 6707;
     :population 330115 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Bolu>. 
   <http://abc/mondial/10/countries/TR/provinces/Bolu> rdf:type :Province ;
     :name 'Bolu';
     :capital <http://abc/mondial/10/countries/TR/provinces/Bolu/cities/Bolu>;
     :area 11051;
     :population 536869 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Burdur>. 
   <http://abc/mondial/10/countries/TR/provinces/Burdur> rdf:type :Province ;
     :name 'Burdur';
     :capital <http://abc/mondial/10/countries/TR/provinces/Burdur/cities/Burdur>;
     :area 6887;
     :population 254899 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Bursa>. 
   <http://abc/mondial/10/countries/TR/provinces/Bursa> rdf:type :Province ;
     :name 'Bursa';
     :capital <http://abc/mondial/10/countries/TR/provinces/Bursa/cities/Bursa>;
     :area 11043;
     :population 1603137 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Canakkale>. 
   <http://abc/mondial/10/countries/TR/provinces/Canakkale> rdf:type :Province ;
     :name 'Canakkale';
     :capital <http://abc/mondial/10/countries/TR/provinces/Canakkale/cities/Canakkale>;
     :area 9737;
     :population 432263 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Cankiri>. 
   <http://abc/mondial/10/countries/TR/provinces/Cankiri> rdf:type :Province ;
     :name 'Cankiri';
     :capital <http://abc/mondial/10/countries/TR/provinces/Cankiri/cities/Cankiri>;
     :area 8454;
     :population 279129 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Corum>. 
   <http://abc/mondial/10/countries/TR/provinces/Corum> rdf:type :Province ;
     :name 'Corum';
     :capital <http://abc/mondial/10/countries/TR/provinces/Corum/cities/Corum>;
     :area 12820;
     :population 609863 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Denizli>. 
   <http://abc/mondial/10/countries/TR/provinces/Denizli> rdf:type :Province ;
     :name 'Denizli';
     :capital <http://abc/mondial/10/countries/TR/provinces/Denizli/cities/Denizli>;
     :area 11868;
     :population 750882 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Diyarbakir>. 
   <http://abc/mondial/10/countries/TR/provinces/Diyarbakir> rdf:type :Province ;
     :name 'Diyarbakir';
     :capital <http://abc/mondial/10/countries/TR/provinces/Diyarbakir/cities/Diyarbakir>;
     :area 15355;
     :population 1094996 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Edirne>. 
   <http://abc/mondial/10/countries/TR/provinces/Edirne> rdf:type :Province ;
     :name 'Edirne';
     :capital <http://abc/mondial/10/countries/TR/provinces/Edirne/cities/Edirne>;
     :area 6276;
     :population 404599 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Elazig>. 
   <http://abc/mondial/10/countries/TR/provinces/Elazig> rdf:type :Province ;
     :name 'Elazig';
     :capital <http://abc/mondial/10/countries/TR/provinces/Elazig/cities/Elazig>;
     :area 9153;
     :population 498225 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Erzincan>. 
   <http://abc/mondial/10/countries/TR/provinces/Erzincan> rdf:type :Province ;
     :name 'Erzincan';
     :capital <http://abc/mondial/10/countries/TR/provinces/Erzincan/cities/Erzincan>;
     :area 11903;
     :population 299251 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Erzurum>. 
   <http://abc/mondial/10/countries/TR/provinces/Erzurum> rdf:type :Province ;
     :name 'Erzurum';
     :capital <http://abc/mondial/10/countries/TR/provinces/Erzurum/cities/Erzurum>;
     :area 25066;
     :population 848201 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Eskisehir>. 
   <http://abc/mondial/10/countries/TR/provinces/Eskisehir> rdf:type :Province ;
     :name 'Eskisehir';
     :capital <http://abc/mondial/10/countries/TR/provinces/Eskisehir/cities/Eskisehir>;
     :area 13652;
     :population 641057 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Gaziantep>. 
   <http://abc/mondial/10/countries/TR/provinces/Gaziantep> rdf:type :Province ;
     :name 'Gaziantep';
     :capital <http://abc/mondial/10/countries/TR/provinces/Gaziantep/cities/Gaziantep>;
     :area 7642;
     :population 1140594 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Giresun>. 
   <http://abc/mondial/10/countries/TR/provinces/Giresun> rdf:type :Province ;
     :name 'Giresun';
     :capital <http://abc/mondial/10/countries/TR/provinces/Giresun/cities/Giresun>;
     :area 6934;
     :population 499087 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Gumushane>. 
   <http://abc/mondial/10/countries/TR/provinces/Gumushane> rdf:type :Province ;
     :name 'Gumushane';
     :capital <http://abc/mondial/10/countries/TR/provinces/Gumushane/cities/Gumushane>;
     :area 6575;
     :population 169375 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Hakkari>. 
   <http://abc/mondial/10/countries/TR/provinces/Hakkari> rdf:type :Province ;
     :name 'Hakkari';
     :capital <http://abc/mondial/10/countries/TR/provinces/Hakkari/cities/Hakkari>;
     :area 7121;
     :population 172479 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Hatay>. 
   <http://abc/mondial/10/countries/TR/provinces/Hatay> rdf:type :Province ;
     :name 'Hatay';
     :capital <http://abc/mondial/10/countries/TR/provinces/Hatay/cities/Antakya>;
     :area 5403;
     :population 1109754 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Icel>. 
   <http://abc/mondial/10/countries/TR/provinces/Icel> rdf:type :Province ;
     :name 'Icel';
     :capital <http://abc/mondial/10/countries/TR/provinces/Icel/cities/Mersin>;
     :area 15853;
     :population 1266995 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Isparta>. 
   <http://abc/mondial/10/countries/TR/provinces/Isparta> rdf:type :Province ;
     :name 'Isparta';
     :capital <http://abc/mondial/10/countries/TR/provinces/Isparta/cities/Isparta>;
     :area 8933;
     :population 434771 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Istanbul>. 
   <http://abc/mondial/10/countries/TR/provinces/Istanbul> rdf:type :Province ;
     :name 'Istanbul';
     :capital <http://abc/mondial/10/countries/TR/provinces/Istanbul/cities/Istanbul>;
     :area 5712;
     :population 7309190 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Izmir>. 
   <http://abc/mondial/10/countries/TR/provinces/Izmir> rdf:type :Province ;
     :name 'Izmir';
     :capital <http://abc/mondial/10/countries/TR/provinces/Izmir/cities/Izmir>;
     :area 11973;
     :population 2694770 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Karaman>. 
   <http://abc/mondial/10/countries/TR/provinces/Karaman> rdf:type :Province ;
     :name 'Karaman';
     :capital <http://abc/mondial/10/countries/TR/provinces/Karaman/cities/Karaman>;
     :area 9163;
     :population 217536 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Karamanmaras>. 
   <http://abc/mondial/10/countries/TR/provinces/Karamanmaras> rdf:type :Province ;
     :name 'Karamanmaras';
     :capital <http://abc/mondial/10/countries/TR/provinces/Karamanmaras/cities/KaramanMaras>;
     :area 14327;
     :population 892952 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Kars>. 
   <http://abc/mondial/10/countries/TR/provinces/Kars> rdf:type :Province ;
     :name 'Kars';
     :capital <http://abc/mondial/10/countries/TR/provinces/Kars/cities/Kars>;
     :area 18557;
     :population 662155 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Kastamonu>. 
   <http://abc/mondial/10/countries/TR/provinces/Kastamonu> rdf:type :Province ;
     :name 'Kastamonu';
     :capital <http://abc/mondial/10/countries/TR/provinces/Kastamonu/cities/Kastamonu>;
     :area 13108;
     :population 423611 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Kayseri>. 
   <http://abc/mondial/10/countries/TR/provinces/Kayseri> rdf:type :Province ;
     :name 'Kayseri';
     :capital <http://abc/mondial/10/countries/TR/provinces/Kayseri/cities/Kayseri>;
     :area 16917;
     :population 943484 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Kirikkale>. 
   <http://abc/mondial/10/countries/TR/provinces/Kirikkale> rdf:type :Province ;
     :name 'Kirikkale';
     :capital <http://abc/mondial/10/countries/TR/provinces/Kirikkale/cities/Kirikkale>;
     :area 4365;
     :population 349396 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Kirklareli>. 
   <http://abc/mondial/10/countries/TR/provinces/Kirklareli> rdf:type :Province ;
     :name 'Kirklareli';
     :capital <http://abc/mondial/10/countries/TR/provinces/Kirklareli/cities/Kirklareli>;
     :area 6550;
     :population 309512 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Kirsehir>. 
   <http://abc/mondial/10/countries/TR/provinces/Kirsehir> rdf:type :Province ;
     :name 'Kirsehir';
     :capital <http://abc/mondial/10/countries/TR/provinces/Kirsehir/cities/Kirsehir>;
     :area 6570;
     :population 256862 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Kocaeli>. 
   <http://abc/mondial/10/countries/TR/provinces/Kocaeli> rdf:type :Province ;
     :name 'Kocaeli';
     :capital <http://abc/mondial/10/countries/TR/provinces/Kocaeli/cities/Izmit>;
     :area 3626;
     :population 936163 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Konya>. 
   <http://abc/mondial/10/countries/TR/provinces/Konya> rdf:type :Province ;
     :name 'Konya';
     :capital <http://abc/mondial/10/countries/TR/provinces/Konya/cities/Konya>;
     :area 38257;
     :population 1750303 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Kutahya>. 
   <http://abc/mondial/10/countries/TR/provinces/Kutahya> rdf:type :Province ;
     :name 'Kutahya';
     :capital <http://abc/mondial/10/countries/TR/provinces/Kutahya/cities/Kutahya>;
     :area 11875;
     :population 578020 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Malatya>. 
   <http://abc/mondial/10/countries/TR/provinces/Malatya> rdf:type :Province ;
     :name 'Malatya';
     :capital <http://abc/mondial/10/countries/TR/provinces/Malatya/cities/Malatya>;
     :area 12313;
     :population 702055 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Manisa>. 
   <http://abc/mondial/10/countries/TR/provinces/Manisa> rdf:type :Province ;
     :name 'Manisa';
     :capital <http://abc/mondial/10/countries/TR/provinces/Manisa/cities/Manisa>;
     :area 13810;
     :population 1154418 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Mardin>. 
   <http://abc/mondial/10/countries/TR/provinces/Mardin> rdf:type :Province ;
     :name 'Mardin';
     :capital <http://abc/mondial/10/countries/TR/provinces/Mardin/cities/Mardin>;
     :area 8891;
     :population 557727 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Mugla>. 
   <http://abc/mondial/10/countries/TR/provinces/Mugla> rdf:type :Province ;
     :name 'Mugla';
     :capital <http://abc/mondial/10/countries/TR/provinces/Mugla/cities/Mugla>;
     :area 13338;
     :population 562809 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Mus>. 
   <http://abc/mondial/10/countries/TR/provinces/Mus> rdf:type :Province ;
     :name 'Mus';
     :capital <http://abc/mondial/10/countries/TR/provinces/Mus/cities/Mus>;
     :area 8196;
     :population 376543 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Nevsehir>. 
   <http://abc/mondial/10/countries/TR/provinces/Nevsehir> rdf:type :Province ;
     :name 'Nevsehir';
     :capital <http://abc/mondial/10/countries/TR/provinces/Nevsehir/cities/Nevsehir>;
     :area 5467;
     :population 289509 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Nigde>. 
   <http://abc/mondial/10/countries/TR/provinces/Nigde> rdf:type :Province ;
     :name 'Nigde';
     :capital <http://abc/mondial/10/countries/TR/provinces/Nigde/cities/Nigde>;
     :area 7312;
     :population 305861 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Ordu>. 
   <http://abc/mondial/10/countries/TR/provinces/Ordu> rdf:type :Province ;
     :name 'Ordu';
     :capital <http://abc/mondial/10/countries/TR/provinces/Ordu/cities/Ordu>;
     :area 6001;
     :population 830105 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Rize>. 
   <http://abc/mondial/10/countries/TR/provinces/Rize> rdf:type :Province ;
     :name 'Rize';
     :capital <http://abc/mondial/10/countries/TR/provinces/Rize/cities/Rize>;
     :area 3920;
     :population 348776 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Sakarya>. 
   <http://abc/mondial/10/countries/TR/provinces/Sakarya> rdf:type :Province ;
     :name 'Sakarya';
     :capital <http://abc/mondial/10/countries/TR/provinces/Sakarya/cities/Sakarya>;
     :area 4817;
     :population 683061 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Samsun>. 
   <http://abc/mondial/10/countries/TR/provinces/Samsun> rdf:type :Province ;
     :name 'Samsun';
     :capital <http://abc/mondial/10/countries/TR/provinces/Samsun/cities/Samsun>;
     :area 9579;
     :population 1158400 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Sanliurfa>. 
   <http://abc/mondial/10/countries/TR/provinces/Sanliurfa> rdf:type :Province ;
     :name 'Sanliurfa';
     :capital <http://abc/mondial/10/countries/TR/provinces/Sanliurfa/cities/Urfa>;
     :area 18584;
     :population 1001455 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Siirt>. 
   <http://abc/mondial/10/countries/TR/provinces/Siirt> rdf:type :Province ;
     :name 'Siirt';
     :capital <http://abc/mondial/10/countries/TR/provinces/Siirt/cities/Siirt>;
     :area 5406;
     :population 243435 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Sinop>. 
   <http://abc/mondial/10/countries/TR/provinces/Sinop> rdf:type :Province ;
     :name 'Sinop';
     :capital <http://abc/mondial/10/countries/TR/provinces/Sinop/cities/Sinop>;
     :area 5862;
     :population 265153 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Sirnak>. 
   <http://abc/mondial/10/countries/TR/provinces/Sirnak> rdf:type :Province ;
     :name 'Sirnak';
     :capital <http://abc/mondial/10/countries/TR/provinces/Sirnak/cities/Sirnak>;
     :area 7172;
     :population 262006 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Sivas>. 
   <http://abc/mondial/10/countries/TR/provinces/Sivas> rdf:type :Province ;
     :name 'Sivas';
     :capital <http://abc/mondial/10/countries/TR/provinces/Sivas/cities/Sivas>;
     :area 28488;
     :population 767481 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Tekirdag>. 
   <http://abc/mondial/10/countries/TR/provinces/Tekirdag> rdf:type :Province ;
     :name 'Tekirdag';
     :capital <http://abc/mondial/10/countries/TR/provinces/Tekirdag/cities/Tekirdag>;
     :area 6218;
     :population 468842 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Tokat>. 
   <http://abc/mondial/10/countries/TR/provinces/Tokat> rdf:type :Province ;
     :name 'Tokat';
     :capital <http://abc/mondial/10/countries/TR/provinces/Tokat/cities/Tokat>;
     :area 9958;
     :population 719251 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Trabzon>. 
   <http://abc/mondial/10/countries/TR/provinces/Trabzon> rdf:type :Province ;
     :name 'Trabzon';
     :capital <http://abc/mondial/10/countries/TR/provinces/Trabzon/cities/Trabzon>;
     :area 4685;
     :population 795849 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Tunceli>. 
   <http://abc/mondial/10/countries/TR/provinces/Tunceli> rdf:type :Province ;
     :name 'Tunceli';
     :capital <http://abc/mondial/10/countries/TR/provinces/Tunceli/cities/Tunceli>;
     :area 7774;
     :population 133143 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Usak>. 
   <http://abc/mondial/10/countries/TR/provinces/Usak> rdf:type :Province ;
     :name 'Usak';
     :capital <http://abc/mondial/10/countries/TR/provinces/Usak/cities/Usak>;
     :area 5341;
     :population 290283 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Van>. 
   <http://abc/mondial/10/countries/TR/provinces/Van> rdf:type :Province ;
     :name 'Van';
     :capital <http://abc/mondial/10/countries/TR/provinces/Van/cities/Van>;
     :area 19069;
     :population 637433 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Yozgat>. 
   <http://abc/mondial/10/countries/TR/provinces/Yozgat> rdf:type :Province ;
     :name 'Yozgat';
     :capital <http://abc/mondial/10/countries/TR/provinces/Yozgat/cities/Yozgat>;
     :area 14123;
     :population 579150 . 
 <http://abc/mondial/10/countries/TR> :hasProvince 
   <http://abc/mondial/10/countries/TR/provinces/Zonguldak>. 
   <http://abc/mondial/10/countries/TR/provinces/Zonguldak> rdf:type :Province ;
     :name 'Zonguldak';
     :capital <http://abc/mondial/10/countries/TR/provinces/Zonguldak/cities/Zonguldak>;
     :area 8629;
     :population 1073560 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Aland>. 
   <http://abc/mondial/10/countries/SF/provinces/Aland> rdf:type :Province ;
     :name 'Aland';
     :capital <http://abc/mondial/10/countries/SF/provinces/Aland/cities/Mariehamn>;
     :population 23000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Haeme>. 
   <http://abc/mondial/10/countries/SF/provinces/Haeme> rdf:type :Province ;
     :name 'Haeme';
     :capital <http://abc/mondial/10/countries/SF/provinces/Haeme/cities/Haemeenlinna>;
     :population 662000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Kuopio>. 
   <http://abc/mondial/10/countries/SF/provinces/Kuopio> rdf:type :Province ;
     :name 'Kuopio';
     :capital <http://abc/mondial/10/countries/SF/provinces/Kuopio/cities/Kuopio>;
     :population 252000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Kymi>. 
   <http://abc/mondial/10/countries/SF/provinces/Kymi> rdf:type :Province ;
     :name 'Kymi';
     :capital <http://abc/mondial/10/countries/SF/provinces/Kymi/cities/Kotka>;
     :population 345000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Lappia>. 
   <http://abc/mondial/10/countries/SF/provinces/Lappia> rdf:type :Province ;
     :name 'Lappia';
     :capital <http://abc/mondial/10/countries/SF/provinces/Lappia/cities/Rovaniemi>;
     :population 195000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Mikkeli>. 
   <http://abc/mondial/10/countries/SF/provinces/Mikkeli> rdf:type :Province ;
     :name 'Mikkeli';
     :capital <http://abc/mondial/10/countries/SF/provinces/Mikkeli/cities/Mikkeli>;
     :population 209000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Suomi>. 
   <http://abc/mondial/10/countries/SF/provinces/Suomi> rdf:type :Province ;
     :name 'Suomi';
     :capital <http://abc/mondial/10/countries/SF/provinces/Suomi/cities/Jyvaeskylae>;
     :population 242000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Pohjols-Karjala>. 
   <http://abc/mondial/10/countries/SF/provinces/Pohjols-Karjala> rdf:type :Province ;
     :name 'Pohjols-Karjala';
     :capital <http://abc/mondial/10/countries/SF/provinces/Pohjols-Karjala/cities/Joensuu>;
     :population 177000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Oulu>. 
   <http://abc/mondial/10/countries/SF/provinces/Oulu> rdf:type :Province ;
     :name 'Oulu';
     :capital <http://abc/mondial/10/countries/SF/provinces/Oulu/cities/Oulu>;
     :population 415000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Turku-Pori>. 
   <http://abc/mondial/10/countries/SF/provinces/Turku-Pori> rdf:type :Province ;
     :name 'Turku-Pori';
     :capital <http://abc/mondial/10/countries/SF/provinces/Turku-Pori/cities/Turku>;
     :population 702000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Uusimaa>. 
   <http://abc/mondial/10/countries/SF/provinces/Uusimaa> rdf:type :Province ;
     :name 'Uusimaa';
     :capital <http://abc/mondial/10/countries/SF/provinces/Uusimaa/cities/Helsinki>;
     :population 1119000 . 
 <http://abc/mondial/10/countries/SF> :hasProvince 
   <http://abc/mondial/10/countries/SF/provinces/Vaasa>. 
   <http://abc/mondial/10/countries/SF/provinces/Vaasa> rdf:type :Province ;
     :name 'Vaasa';
     :capital <http://abc/mondial/10/countries/SF/provinces/Vaasa/cities/Vaasa>;
     :population 430000 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Oslo>. 
   <http://abc/mondial/10/countries/N/provinces/Oslo> rdf:type :Province ;
     :name 'Oslo';
     :capital <http://abc/mondial/10/countries/N/provinces/Oslo/cities/Oslo>;
     :population 449337 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Akershus>. 
   <http://abc/mondial/10/countries/N/provinces/Akershus> rdf:type :Province ;
     :name 'Akershus';
     :capital <http://abc/mondial/10/countries/N/provinces/Oslo/cities/Oslo>;
     :population 393217 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Oestfold>. 
   <http://abc/mondial/10/countries/N/provinces/Oestfold> rdf:type :Province ;
     :name 'Oestfold';
     :capital <http://abc/mondial/10/countries/N/provinces/Oestfold/cities/Moss>;
     :population 234941 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Hedmark>. 
   <http://abc/mondial/10/countries/N/provinces/Hedmark> rdf:type :Province ;
     :name 'Hedmark';
     :capital <http://abc/mondial/10/countries/N/provinces/Hedmark/cities/Hamar>;
     :population 186355 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Oppland>. 
   <http://abc/mondial/10/countries/N/provinces/Oppland> rdf:type :Province ;
     :name 'Oppland';
     :capital <http://abc/mondial/10/countries/N/provinces/Oppland/cities/Lillehammer>;
     :population 181791 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Buskerud>. 
   <http://abc/mondial/10/countries/N/provinces/Buskerud> rdf:type :Province ;
     :name 'Buskerud';
     :capital <http://abc/mondial/10/countries/N/provinces/Buskerud/cities/Drammen>;
     :population 219967 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Vestfold>. 
   <http://abc/mondial/10/countries/N/provinces/Vestfold> rdf:type :Province ;
     :name 'Vestfold';
     :capital <http://abc/mondial/10/countries/N/provinces/Vestfold/cities/Toensberg>;
     :population 191600 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Telemark>. 
   <http://abc/mondial/10/countries/N/provinces/Telemark> rdf:type :Province ;
     :name 'Telemark';
     :capital <http://abc/mondial/10/countries/N/provinces/Telemark/cities/Skien>;
     :population 162547 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/AustAgder>. 
   <http://abc/mondial/10/countries/N/provinces/AustAgder> rdf:type :Province ;
     :name 'Aust Agder';
     :capital <http://abc/mondial/10/countries/N/provinces/AustAgder/cities/Arendal>;
     :population 94688 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/VestAgder>. 
   <http://abc/mondial/10/countries/N/provinces/VestAgder> rdf:type :Province ;
     :name 'Vest Agder';
     :capital <http://abc/mondial/10/countries/N/provinces/VestAgder/cities/Kristiansand>;
     :population 140232 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Rogaland>. 
   <http://abc/mondial/10/countries/N/provinces/Rogaland> rdf:type :Province ;
     :name 'Rogaland';
     :capital <http://abc/mondial/10/countries/N/provinces/Rogaland/cities/Stavanger>;
     :population 323365 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Hordaland>. 
   <http://abc/mondial/10/countries/N/provinces/Hordaland> rdf:type :Province ;
     :name 'Hordaland';
     :capital <http://abc/mondial/10/countries/N/provinces/Hordaland/cities/Bergen>;
     :population 399702 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/SognogFjordane>. 
   <http://abc/mondial/10/countries/N/provinces/SognogFjordane> rdf:type :Province ;
     :name 'Sogn og Fjordane';
     :capital <http://abc/mondial/10/countries/N/provinces/SognogFjordane/cities/Hermannsverk>;
     :population 106116 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/MoereogRomsdal>. 
   <http://abc/mondial/10/countries/N/provinces/MoereogRomsdal> rdf:type :Province ;
     :name 'Moere og Romsdal';
     :capital <http://abc/mondial/10/countries/N/provinces/MoereogRomsdal/cities/Molde>;
     :population 237290 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/SoerTrondelag>. 
   <http://abc/mondial/10/countries/N/provinces/SoerTrondelag> rdf:type :Province ;
     :name 'Soer Trondelag';
     :capital <http://abc/mondial/10/countries/N/provinces/SoerTrondelag/cities/Trondheim>;
     :population 246824 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/NordTrondelag>. 
   <http://abc/mondial/10/countries/N/provinces/NordTrondelag> rdf:type :Province ;
     :name 'Nord Trondelag';
     :capital <http://abc/mondial/10/countries/N/provinces/NordTrondelag/cities/Steinkjer>;
     :population 126692 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Nordland>. 
   <http://abc/mondial/10/countries/N/provinces/Nordland> rdf:type :Province ;
     :name 'Nordland';
     :capital <http://abc/mondial/10/countries/N/provinces/Nordland/cities/Bodoe>;
     :population 242268 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Troms>. 
   <http://abc/mondial/10/countries/N/provinces/Troms> rdf:type :Province ;
     :name 'Troms';
     :capital <http://abc/mondial/10/countries/N/provinces/Troms/cities/Tromsoe>;
     :population 146736 . 
 <http://abc/mondial/10/countries/N> :hasProvince 
   <http://abc/mondial/10/countries/N/provinces/Finnmark>. 
   <http://abc/mondial/10/countries/N/provinces/Finnmark> rdf:type :Province ;
     :name 'Finnmark';
     :capital <http://abc/mondial/10/countries/N/provinces/Finnmark/cities/Vadsoe>;
     :population 75667 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Alvsborg>. 
   <http://abc/mondial/10/countries/S/provinces/Alvsborg> rdf:type :Province ;
     :name 'Alvsborg';
     :capital <http://abc/mondial/10/countries/S/provinces/Alvsborg/cities/Vanersborg>;
     :area 11395;
     :population 444259 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Blekinge>. 
   <http://abc/mondial/10/countries/S/provinces/Blekinge> rdf:type :Province ;
     :name 'Blekinge';
     :capital <http://abc/mondial/10/countries/S/provinces/Blekinge/cities/Karlskrona>;
     :area 2941;
     :population 151168 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Gavleborg>. 
   <http://abc/mondial/10/countries/S/provinces/Gavleborg> rdf:type :Province ;
     :name 'Gavleborg';
     :capital <http://abc/mondial/10/countries/S/provinces/Gavleborg/cities/Gavle>;
     :area 18191;
     :population 289339 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus>. 
   <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus> rdf:type :Province ;
     :name 'Goteborg och Bohus';
     :capital <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus/cities/Goteborg>;
     :area 5141;
     :population 742550 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Gotland>. 
   <http://abc/mondial/10/countries/S/provinces/Gotland> rdf:type :Province ;
     :name 'Gotland';
     :capital <http://abc/mondial/10/countries/S/provinces/Gotland/cities/Visby>;
     :area 3140;
     :population 57383 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Halland>. 
   <http://abc/mondial/10/countries/S/provinces/Halland> rdf:type :Province ;
     :name 'Halland';
     :capital <http://abc/mondial/10/countries/S/provinces/Halland/cities/Halmstad>;
     :area 5454;
     :population 257874 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Jamtland>. 
   <http://abc/mondial/10/countries/S/provinces/Jamtland> rdf:type :Province ;
     :name 'Jamtland';
     :capital <http://abc/mondial/10/countries/S/provinces/Jamtland/cities/Ostersund>;
     :area 49443;
     :population 136009 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Jonkoping>. 
   <http://abc/mondial/10/countries/S/provinces/Jonkoping> rdf:type :Province ;
     :name 'Jonkoping';
     :capital <http://abc/mondial/10/countries/S/provinces/Jonkoping/cities/Jonkoping>;
     :area 9944;
     :population 309738 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Kalmar>. 
   <http://abc/mondial/10/countries/S/provinces/Kalmar> rdf:type :Province ;
     :name 'Kalmar';
     :capital <http://abc/mondial/10/countries/S/provinces/Kalmar/cities/Kalmar>;
     :area 11170;
     :population 241883 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Dalarna>. 
   <http://abc/mondial/10/countries/S/provinces/Dalarna> rdf:type :Province ;
     :name 'Dalarna';
     :capital <http://abc/mondial/10/countries/S/provinces/Dalarna/cities/Falun>;
     :area 28194;
     :population 290388 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Kristianstad>. 
   <http://abc/mondial/10/countries/S/provinces/Kristianstad> rdf:type :Province ;
     :name 'Kristianstad';
     :capital <http://abc/mondial/10/countries/S/provinces/Kristianstad/cities/Kristianstad>;
     :area 6087;
     :population 291468 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Kronoberg>. 
   <http://abc/mondial/10/countries/S/provinces/Kronoberg> rdf:type :Province ;
     :name 'Kronoberg';
     :capital <http://abc/mondial/10/countries/S/provinces/Kronoberg/cities/Vaxjo>;
     :area 8458;
     :population 178612 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Malmohus>. 
   <http://abc/mondial/10/countries/S/provinces/Malmohus> rdf:type :Province ;
     :name 'Malmohus';
     :capital <http://abc/mondial/10/countries/S/provinces/Malmohus/cities/Malmo>;
     :area 4938;
     :population 786757 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Norrbotten>. 
   <http://abc/mondial/10/countries/S/provinces/Norrbotten> rdf:type :Province ;
     :name 'Norrbotten';
     :capital <http://abc/mondial/10/countries/S/provinces/Norrbotten/cities/Lulea>;
     :area 98913;
     :population 264834 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Orebro>. 
   <http://abc/mondial/10/countries/S/provinces/Orebro> rdf:type :Province ;
     :name 'Orebro';
     :capital <http://abc/mondial/10/countries/S/provinces/Orebro/cities/Orebro>;
     :area 8519;
     :population 273608 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Ostergotland>. 
   <http://abc/mondial/10/countries/S/provinces/Ostergotland> rdf:type :Province ;
     :name 'Ostergotland';
     :capital <http://abc/mondial/10/countries/S/provinces/Ostergotland/cities/Linkoping>;
     :area 10562;
     :population 406100 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Skaraborg>. 
   <http://abc/mondial/10/countries/S/provinces/Skaraborg> rdf:type :Province ;
     :name 'Skaraborg';
     :capital <http://abc/mondial/10/countries/S/provinces/Skaraborg/cities/Mariestad>;
     :area 7937;
     :population 278162 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Sodermanland>. 
   <http://abc/mondial/10/countries/S/provinces/Sodermanland> rdf:type :Province ;
     :name 'Sodermanland';
     :capital <http://abc/mondial/10/countries/S/provinces/Sodermanland/cities/Nykoping>;
     :area 6060;
     :population 256818 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Stockholm>. 
   <http://abc/mondial/10/countries/S/provinces/Stockholm> rdf:type :Province ;
     :name 'Stockholm';
     :capital <http://abc/mondial/10/countries/S/provinces/Stockholm/cities/Stockholm>;
     :area 6488;
     :population 1654511 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Uppsala>. 
   <http://abc/mondial/10/countries/S/provinces/Uppsala> rdf:type :Province ;
     :name 'Uppsala';
     :capital <http://abc/mondial/10/countries/S/provinces/Uppsala/cities/Uppsala>;
     :area 6989;
     :population 273918 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Varmland>. 
   <http://abc/mondial/10/countries/S/provinces/Varmland> rdf:type :Province ;
     :name 'Varmland';
     :capital <http://abc/mondial/10/countries/S/provinces/Varmland/cities/Karlstad>;
     :area 17584;
     :population 284187 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Vasterbotten>. 
   <http://abc/mondial/10/countries/S/provinces/Vasterbotten> rdf:type :Province ;
     :name 'Vasterbotten';
     :capital <http://abc/mondial/10/countries/S/provinces/Vasterbotten/cities/Umea>;
     :area 55401;
     :population 253835 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Vasternorrland>. 
   <http://abc/mondial/10/countries/S/provinces/Vasternorrland> rdf:type :Province ;
     :name 'Vasternorrland';
     :capital <http://abc/mondial/10/countries/S/provinces/Vasternorrland/cities/Harnosand>;
     :area 21678;
     :population 261280 . 
 <http://abc/mondial/10/countries/S> :hasProvince 
   <http://abc/mondial/10/countries/S/provinces/Vastmanland>. 
   <http://abc/mondial/10/countries/S/provinces/Vastmanland> rdf:type :Province ;
     :name 'Vastmanland';
     :capital <http://abc/mondial/10/countries/S/provinces/Vastmanland/cities/Vasteras>;
     :area 6302;
     :population 259438 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Aveiro>. 
   <http://abc/mondial/10/countries/P/provinces/Aveiro> rdf:type :Province ;
     :name 'Aveiro';
     :capital <http://abc/mondial/10/countries/P/provinces/Aveiro/cities/Aveiro>;
     :area 2808;
     :population 656000 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Beja>. 
   <http://abc/mondial/10/countries/P/provinces/Beja> rdf:type :Province ;
     :name 'Beja';
     :capital <http://abc/mondial/10/countries/P/provinces/Beja/cities/Beja>;
     :area 10225;
     :population 167900 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Braga>. 
   <http://abc/mondial/10/countries/P/provinces/Braga> rdf:type :Province ;
     :name 'Braga';
     :capital <http://abc/mondial/10/countries/P/provinces/Braga/cities/Braga>;
     :area 2673;
     :population 746100 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Braganca>. 
   <http://abc/mondial/10/countries/P/provinces/Braganca> rdf:type :Province ;
     :name 'Braganca';
     :capital <http://abc/mondial/10/countries/P/provinces/Braganca/cities/Braganca>;
     :area 6608;
     :population 158300 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/CasteloBranco>. 
   <http://abc/mondial/10/countries/P/provinces/CasteloBranco> rdf:type :Province ;
     :name 'Castelo Branco';
     :capital <http://abc/mondial/10/countries/P/provinces/CasteloBranco/cities/CasteloBranco>;
     :area 6675;
     :population 214700 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Coimbra>. 
   <http://abc/mondial/10/countries/P/provinces/Coimbra> rdf:type :Province ;
     :name 'Coimbra';
     :capital <http://abc/mondial/10/countries/P/provinces/Coimbra/cities/Coimbra>;
     :area 3947;
     :population 427600 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Evora>. 
   <http://abc/mondial/10/countries/P/provinces/Evora> rdf:type :Province ;
     :name 'Evora';
     :capital <http://abc/mondial/10/countries/P/provinces/Evora/cities/Evora>;
     :area 7393;
     :population 173500 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Algarve>. 
   <http://abc/mondial/10/countries/P/provinces/Algarve> rdf:type :Province ;
     :name 'Algarve';
     :capital <http://abc/mondial/10/countries/P/provinces/Algarve/cities/Faro>;
     :area 4960;
     :population 340100 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Guarda>. 
   <http://abc/mondial/10/countries/P/provinces/Guarda> rdf:type :Province ;
     :name 'Guarda';
     :capital <http://abc/mondial/10/countries/P/provinces/Guarda/cities/Guarda>;
     :area 5518;
     :population 187800 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Leiria>. 
   <http://abc/mondial/10/countries/P/provinces/Leiria> rdf:type :Province ;
     :name 'Leiria';
     :capital <http://abc/mondial/10/countries/P/provinces/Leiria/cities/Leiria>;
     :area 3515;
     :population 427800 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Lisbon>. 
   <http://abc/mondial/10/countries/P/provinces/Lisbon> rdf:type :Province ;
     :name 'Lisbon';
     :capital <http://abc/mondial/10/countries/P/provinces/Lisbon/cities/Lisbon>;
     :area 2761;
     :population 2063800 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Portalegre>. 
   <http://abc/mondial/10/countries/P/provinces/Portalegre> rdf:type :Province ;
     :name 'Portalegre';
     :capital <http://abc/mondial/10/countries/P/provinces/Portalegre/cities/Portalegre>;
     :area 6065;
     :population 134300 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Porto>. 
   <http://abc/mondial/10/countries/P/provinces/Porto> rdf:type :Province ;
     :name 'Porto';
     :capital <http://abc/mondial/10/countries/P/provinces/Porto/cities/Porto>;
     :area 2395;
     :population 1622300 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Santarem>. 
   <http://abc/mondial/10/countries/P/provinces/Santarem> rdf:type :Province ;
     :name 'Santarem';
     :capital <http://abc/mondial/10/countries/P/provinces/Santarem/cities/Santarem>;
     :area 6747;
     :population 442700 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Setubal>. 
   <http://abc/mondial/10/countries/P/provinces/Setubal> rdf:type :Province ;
     :name 'Setubal';
     :capital <http://abc/mondial/10/countries/P/provinces/Setubal/cities/Setubal>;
     :area 5064;
     :population 713700 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/VianadoCastelo>. 
   <http://abc/mondial/10/countries/P/provinces/VianadoCastelo> rdf:type :Province ;
     :name 'Viana do Castelo';
     :capital <http://abc/mondial/10/countries/P/provinces/VianadoCastelo/cities/VianadoCastelo>;
     :area 2255;
     :population 248700 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/VilaReal>. 
   <http://abc/mondial/10/countries/P/provinces/VilaReal> rdf:type :Province ;
     :name 'Vila Real';
     :capital <http://abc/mondial/10/countries/P/provinces/VilaReal/cities/VilaReal>;
     :area 4328;
     :population 237100 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Viseu>. 
   <http://abc/mondial/10/countries/P/provinces/Viseu> rdf:type :Province ;
     :name 'Viseu';
     :capital <http://abc/mondial/10/countries/P/provinces/Viseu/cities/Viseu>;
     :area 5007;
     :population 401000 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Azores>. 
   <http://abc/mondial/10/countries/P/provinces/Azores> rdf:type :Province ;
     :name 'Azores';
     :capital <http://abc/mondial/10/countries/P/provinces/Azores/cities/PontaDelgada>;
     :area 2247;
     :population 236700 . 
 <http://abc/mondial/10/countries/P> :hasProvince 
   <http://abc/mondial/10/countries/P/provinces/Madeira>. 
   <http://abc/mondial/10/countries/P/provinces/Madeira> rdf:type :Province ;
     :name 'Madeira';
     :capital <http://abc/mondial/10/countries/P/provinces/Madeira/cities/Funchal>;
     :area 794;
     :population 253000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Avon>. 
   <http://abc/mondial/10/countries/GB/provinces/Avon> rdf:type :Province ;
     :name 'Avon';
     :capital <http://abc/mondial/10/countries/GB/provinces/Avon/cities/Bristol>;
     :area 1346;
     :population 962000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Bedfordshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Bedfordshire> rdf:type :Province ;
     :name 'Bedfordshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Bedfordshire/cities/Bedford>;
     :area 1235;
     :population 534300 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Berkshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Berkshire> rdf:type :Province ;
     :name 'Berkshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Reading>;
     :area 1259;
     :population 752500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire> rdf:type :Province ;
     :name 'Buckinghamshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire/cities/Aylesbury>;
     :area 1883;
     :population 640200 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire> rdf:type :Province ;
     :name 'Cambridgeshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire/cities/Cambridge>;
     :area 3409;
     :population 669900 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Cheshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Cheshire> rdf:type :Province ;
     :name 'Cheshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Chester>;
     :area 2329;
     :population 966500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Cleveland>. 
   <http://abc/mondial/10/countries/GB/provinces/Cleveland> rdf:type :Province ;
     :name 'Cleveland';
     :capital <http://abc/mondial/10/countries/GB/provinces/Cleveland/cities/Middlesbrough>;
     :area 583;
     :population 557500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Cornwall>. 
   <http://abc/mondial/10/countries/GB/provinces/Cornwall> rdf:type :Province ;
     :name 'Cornwall';
     :capital <http://abc/mondial/10/countries/GB/provinces/Cornwall/cities/Truro>;
     :area 3564;
     :population 475200 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Cumbria>. 
   <http://abc/mondial/10/countries/GB/provinces/Cumbria> rdf:type :Province ;
     :name 'Cumbria';
     :capital <http://abc/mondial/10/countries/GB/provinces/Cumbria/cities/Carlisle>;
     :area 6810;
     :population 489700 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Derbyshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Derbyshire> rdf:type :Province ;
     :name 'Derbyshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/Matlock>;
     :area 2631;
     :population 938800 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Devon>. 
   <http://abc/mondial/10/countries/GB/provinces/Devon> rdf:type :Province ;
     :name 'Devon';
     :capital <http://abc/mondial/10/countries/GB/provinces/Devon/cities/Exeter>;
     :area 6711;
     :population 1040000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Dorset>. 
   <http://abc/mondial/10/countries/GB/provinces/Dorset> rdf:type :Province ;
     :name 'Dorset';
     :capital <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Dorchester>;
     :area 2654;
     :population 662900 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Durham>. 
   <http://abc/mondial/10/countries/GB/provinces/Durham> rdf:type :Province ;
     :name 'Durham';
     :capital <http://abc/mondial/10/countries/GB/provinces/Durham/cities/Durham>;
     :area 2436;
     :population 604300 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/EastSussex>. 
   <http://abc/mondial/10/countries/GB/provinces/EastSussex> rdf:type :Province ;
     :name 'East Sussex';
     :capital <http://abc/mondial/10/countries/GB/provinces/EastSussex/cities/Lewes>;
     :area 1795;
     :population 716500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Essex>. 
   <http://abc/mondial/10/countries/GB/provinces/Essex> rdf:type :Province ;
     :name 'Essex';
     :capital <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Chelmsford>;
     :area 3672;
     :population 1548800 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Gloucestershire>. 
   <http://abc/mondial/10/countries/GB/provinces/Gloucestershire> rdf:type :Province ;
     :name 'Gloucestershire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Gloucestershire/cities/Gloucester>;
     :area 2643;
     :population 538800 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/GreaterLondon>. 
   <http://abc/mondial/10/countries/GB/provinces/GreaterLondon> rdf:type :Province ;
     :name 'Greater London';
     :capital <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London>;
     :area 1579;
     :population 6803100 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/GreaterManchester>. 
   <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> rdf:type :Province ;
     :name 'Greater Manchester';
     :capital <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Manchester>;
     :area 1287;
     :population 2561600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Hampshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Hampshire> rdf:type :Province ;
     :name 'Hampshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Winchester>;
     :area 3777;
     :population 1578700 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/HerefordandWorcester>. 
   <http://abc/mondial/10/countries/GB/provinces/HerefordandWorcester> rdf:type :Province ;
     :name 'Hereford and Worcester';
     :capital <http://abc/mondial/10/countries/GB/provinces/HerefordandWorcester/cities/Worcester>;
     :area 3927;
     :population 696000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Hertfordshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Hertfordshire> rdf:type :Province ;
     :name 'Hertfordshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Hertfordshire/cities/Hertford>;
     :area 1634;
     :population 989500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Humberside>. 
   <http://abc/mondial/10/countries/GB/provinces/Humberside> rdf:type :Province ;
     :name 'Humberside';
     :capital <http://abc/mondial/10/countries/GB/provinces/Humberside/cities/Hull>;
     :area 3512;
     :population 874400 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/IsleofWight>. 
   <http://abc/mondial/10/countries/GB/provinces/IsleofWight> rdf:type :Province ;
     :name 'Isle of Wight';
     :capital <http://abc/mondial/10/countries/GB/provinces/Newport/cities/Newport>;
     :area 381;
     :population 126600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Kent>. 
   <http://abc/mondial/10/countries/GB/provinces/Kent> rdf:type :Province ;
     :name 'Kent';
     :capital <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Maidstone>;
     :area 3731;
     :population 1538800 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Lancashire>. 
   <http://abc/mondial/10/countries/GB/provinces/Lancashire> rdf:type :Province ;
     :name 'Lancashire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Preston>;
     :area 3064;
     :population 1408300 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Leicestershire>. 
   <http://abc/mondial/10/countries/GB/provinces/Leicestershire> rdf:type :Province ;
     :name 'Leicestershire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Leicestershire/cities/Leichester>;
     :area 2553;
     :population 890800 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Lincolnshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Lincolnshire> rdf:type :Province ;
     :name 'Lincolnshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Lincolnshire/cities/Lincoln>;
     :area 5915;
     :population 592600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Merseyside>. 
   <http://abc/mondial/10/countries/GB/provinces/Merseyside> rdf:type :Province ;
     :name 'Merseyside';
     :capital <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Liverpool>;
     :area 652;
     :population 1441100 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Norfolk>. 
   <http://abc/mondial/10/countries/GB/provinces/Norfolk> rdf:type :Province ;
     :name 'Norfolk';
     :capital <http://abc/mondial/10/countries/GB/provinces/Norfolk/cities/Norwich>;
     :area 5368;
     :population 759400 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Northamptonshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Northamptonshire> rdf:type :Province ;
     :name 'Northamptonshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Northamptonshire/cities/Northampton>;
     :area 2367;
     :population 587100 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Northumberland>. 
   <http://abc/mondial/10/countries/GB/provinces/Northumberland> rdf:type :Province ;
     :name 'Northumberland';
     :capital <http://abc/mondial/10/countries/GB/provinces/TyneandWear/cities/NewcastleuponTyne>;
     :area 5032;
     :population 307100 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire>. 
   <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire> rdf:type :Province ;
     :name 'North Yorkshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/Northallerton>;
     :area 8309;
     :population 720900 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire> rdf:type :Province ;
     :name 'Nottinghamshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire/cities/Nottingham>;
     :area 2164;
     :population 1015500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Oxfordshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Oxfordshire> rdf:type :Province ;
     :name 'Oxfordshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Oxfordshire/cities/Oxford>;
     :area 2608;
     :population 597700 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Shropshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Shropshire> rdf:type :Province ;
     :name 'Shropshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Shropshire/cities/Shrewsbury>;
     :area 3490;
     :population 412500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Somerset>. 
   <http://abc/mondial/10/countries/GB/provinces/Somerset> rdf:type :Province ;
     :name 'Somerset';
     :capital <http://abc/mondial/10/countries/GB/provinces/Somerset/cities/Taunton>;
     :area 3451;
     :population 469400 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire>. 
   <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire> rdf:type :Province ;
     :name 'South Yorkshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Barnsley>;
     :area 1560;
     :population 1292700 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Staffordshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Staffordshire> rdf:type :Province ;
     :name 'Staffordshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Staffordshire/cities/Stafford>;
     :area 2716;
     :population 1047400 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Suffolk>. 
   <http://abc/mondial/10/countries/GB/provinces/Suffolk> rdf:type :Province ;
     :name 'Suffolk';
     :capital <http://abc/mondial/10/countries/GB/provinces/Suffolk/cities/Ipswich>;
     :area 3797;
     :population 661900 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Surrey>. 
   <http://abc/mondial/10/countries/GB/provinces/Surrey> rdf:type :Province ;
     :name 'Surrey';
     :capital <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Kingston>;
     :area 1679;
     :population 1035500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/TyneandWear>. 
   <http://abc/mondial/10/countries/GB/provinces/TyneandWear> rdf:type :Province ;
     :name 'Tyne and Wear';
     :capital <http://abc/mondial/10/countries/GB/provinces/TyneandWear/cities/NewcastleuponTyne>;
     :area 540;
     :population 1125600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Warwickshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Warwickshire> rdf:type :Province ;
     :name 'Warwickshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Warwickshire/cities/Warwick>;
     :area 1981;
     :population 489900 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/WestMidlands>. 
   <http://abc/mondial/10/countries/GB/provinces/WestMidlands> rdf:type :Province ;
     :name 'West Midlands';
     :capital <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Birmingham>;
     :area 899;
     :population 2619000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/WestSussex>. 
   <http://abc/mondial/10/countries/GB/provinces/WestSussex> rdf:type :Province ;
     :name 'West Sussex';
     :capital <http://abc/mondial/10/countries/GB/provinces/WestSussex/cities/Chichester>;
     :area 1989;
     :population 713600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/WestYorkshire>. 
   <http://abc/mondial/10/countries/GB/provinces/WestYorkshire> rdf:type :Province ;
     :name 'West Yorkshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Wakefield>;
     :area 2039;
     :population 2066200 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Wiltshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Wiltshire> rdf:type :Province ;
     :name 'Wiltshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Wiltshire/cities/Trowbridge>;
     :area 3480;
     :population 575100 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Borders>. 
   <http://abc/mondial/10/countries/GB/provinces/Borders> rdf:type :Province ;
     :name 'Borders';
     :capital <http://abc/mondial/10/countries/GB/provinces/Borders/cities/NewtownSt.Boswells>;
     :area 4698;
     :population 105700 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Central>. 
   <http://abc/mondial/10/countries/GB/provinces/Central> rdf:type :Province ;
     :name 'Central';
     :capital <http://abc/mondial/10/countries/GB/provinces/Central/cities/Stirling>;
     :area 2700;
     :population 273400 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/DumfriesandGalloway>. 
   <http://abc/mondial/10/countries/GB/provinces/DumfriesandGalloway> rdf:type :Province ;
     :name 'Dumfries and Galloway';
     :capital <http://abc/mondial/10/countries/GB/provinces/DumfriesandGalloway/cities/Dumfries>;
     :area 6425;
     :population 147800 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Fife>. 
   <http://abc/mondial/10/countries/GB/provinces/Fife> rdf:type :Province ;
     :name 'Fife';
     :capital <http://abc/mondial/10/countries/GB/provinces/Fife/cities/Glenrothes>;
     :area 1319;
     :population 352100 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Grampian>. 
   <http://abc/mondial/10/countries/GB/provinces/Grampian> rdf:type :Province ;
     :name 'Grampian';
     :capital <http://abc/mondial/10/countries/GB/provinces/Grampian/cities/Aberdeen>;
     :area 8752;
     :population 532500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Highland>. 
   <http://abc/mondial/10/countries/GB/provinces/Highland> rdf:type :Province ;
     :name 'Highland';
     :capital <http://abc/mondial/10/countries/GB/provinces/Highland/cities/Inverness>;
     :area 26137;
     :population 207500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Lothian>. 
   <http://abc/mondial/10/countries/GB/provinces/Lothian> rdf:type :Province ;
     :name 'Lothian';
     :capital <http://abc/mondial/10/countries/GB/provinces/Lothian/cities/Edinburgh>;
     :area 1770;
     :population 758600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Strathclyde>. 
   <http://abc/mondial/10/countries/GB/provinces/Strathclyde> rdf:type :Province ;
     :name 'Strathclyde';
     :capital <http://abc/mondial/10/countries/GB/provinces/Strathclyde/cities/Glasgow>;
     :area 13773;
     :population 2287800 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Tayside>. 
   <http://abc/mondial/10/countries/GB/provinces/Tayside> rdf:type :Province ;
     :name 'Tayside';
     :capital <http://abc/mondial/10/countries/GB/provinces/Tayside/cities/Dundee>;
     :area 7643;
     :population 395000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/AberconwyandColwyn>. 
   <http://abc/mondial/10/countries/GB/provinces/AberconwyandColwyn> rdf:type :Province ;
     :name 'Aberconwy and Colwyn';
     :capital <http://abc/mondial/10/countries/GB/provinces/AberconwyandColwyn/cities/ColwynBay>;
     :area 1130;
     :population 110700 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Anglesey>. 
   <http://abc/mondial/10/countries/GB/provinces/Anglesey> rdf:type :Province ;
     :name 'Anglesey';
     :capital <http://abc/mondial/10/countries/GB/provinces/Anglesey/cities/Llangefni>;
     :area 719;
     :population 68500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/BlaenauGwent>. 
   <http://abc/mondial/10/countries/GB/provinces/BlaenauGwent> rdf:type :Province ;
     :name 'Blaenau Gwent';
     :capital <http://abc/mondial/10/countries/GB/provinces/BlaenauGwent/cities/EbbwVale>;
     :area 109;
     :population 73300 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Bridgend>. 
   <http://abc/mondial/10/countries/GB/provinces/Bridgend> rdf:type :Province ;
     :name 'Bridgend';
     :capital <http://abc/mondial/10/countries/GB/provinces/Bridgend/cities/Bridgend>;
     :area 246;
     :population 130900 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Caerphilly>. 
   <http://abc/mondial/10/countries/GB/provinces/Caerphilly> rdf:type :Province ;
     :name 'Caerphilly';
     :capital <http://abc/mondial/10/countries/GB/provinces/Caerphilly/cities/YstradFawr>;
     :area 279;
     :population 171000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Cardiff>. 
   <http://abc/mondial/10/countries/GB/provinces/Cardiff> rdf:type :Province ;
     :name 'Cardiff';
     :capital <http://abc/mondial/10/countries/GB/provinces/Cardiff/cities/Cardiff>;
     :area 139;
     :population 306600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Carmarthenshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Carmarthenshire> rdf:type :Province ;
     :name 'Carmarthenshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Carmarthenshire/cities/Carmarthen>;
     :area 2398;
     :population 169000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Ceredigion>. 
   <http://abc/mondial/10/countries/GB/provinces/Ceredigion> rdf:type :Province ;
     :name 'Ceredigion';
     :capital <http://abc/mondial/10/countries/GB/provinces/Ceredigion/cities/Aberystwyth>;
     :area 1797;
     :population 69700 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Denbighshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Denbighshire> rdf:type :Province ;
     :name 'Denbighshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Denbighshire/cities/Ruthin>;
     :area 844;
     :population 91300 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Flintshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Flintshire> rdf:type :Province ;
     :name 'Flintshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Flintshire/cities/Mold>;
     :area 437;
     :population 145300 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Gwynedd>. 
   <http://abc/mondial/10/countries/GB/provinces/Gwynedd> rdf:type :Province ;
     :name 'Gwynedd';
     :capital <http://abc/mondial/10/countries/GB/provinces/Gwynedd/cities/Caernarfon>;
     :area 2548;
     :population 117000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/MerthyrTydfil>. 
   <http://abc/mondial/10/countries/GB/provinces/MerthyrTydfil> rdf:type :Province ;
     :name 'Merthyr Tydfil';
     :capital <http://abc/mondial/10/countries/GB/provinces/MerthyrTydfil/cities/MerthyrTydfil>;
     :area 111;
     :population 59500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Monmouthshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Monmouthshire> rdf:type :Province ;
     :name 'Monmouthshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Monmouthshire/cities/Cwmbran>;
     :area 851;
     :population 84200 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/NeathandPortTalbot>. 
   <http://abc/mondial/10/countries/GB/provinces/NeathandPortTalbot> rdf:type :Province ;
     :name 'Neath and Port Talbot';
     :capital <http://abc/mondial/10/countries/GB/provinces/NeathandPortTalbot/cities/PortTalbot>;
     :area 441;
     :population 140100 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Newport>. 
   <http://abc/mondial/10/countries/GB/provinces/Newport> rdf:type :Province ;
     :name 'Newport';
     :capital <http://abc/mondial/10/countries/GB/provinces/Newport/cities/Newport>;
     :area 191;
     :population 137400 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Pembrokeshire>. 
   <http://abc/mondial/10/countries/GB/provinces/Pembrokeshire> rdf:type :Province ;
     :name 'Pembrokeshire';
     :capital <http://abc/mondial/10/countries/GB/provinces/Pembrokeshire/cities/Haverfordwest>;
     :area 1590;
     :population 113600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Powys>. 
   <http://abc/mondial/10/countries/GB/provinces/Powys> rdf:type :Province ;
     :name 'Powys';
     :capital <http://abc/mondial/10/countries/GB/provinces/Powys/cities/LlandrindodWells>;
     :area 5204;
     :population 121800 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/RhonddaCynonTaff>. 
   <http://abc/mondial/10/countries/GB/provinces/RhonddaCynonTaff> rdf:type :Province ;
     :name 'Rhondda Cynon Taff';
     :capital <http://abc/mondial/10/countries/GB/provinces/RhonddaCynonTaff/cities/Rhondda>;
     :area 424;
     :population 239000 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Swansea>. 
   <http://abc/mondial/10/countries/GB/provinces/Swansea> rdf:type :Province ;
     :name 'Swansea';
     :capital <http://abc/mondial/10/countries/GB/provinces/Swansea/cities/Swansea>;
     :area 378;
     :population 230900 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Torfaen>. 
   <http://abc/mondial/10/countries/GB/provinces/Torfaen> rdf:type :Province ;
     :name 'Torfaen';
     :capital <http://abc/mondial/10/countries/GB/provinces/Torfaen/cities/Pontypool>;
     :area 126;
     :population 90600 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan>. 
   <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan> rdf:type :Province ;
     :name 'Vale of Glamorgan';
     :capital <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan/cities/Barry>;
     :area 337;
     :population 119200 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Wrexham>. 
   <http://abc/mondial/10/countries/GB/provinces/Wrexham> rdf:type :Province ;
     :name 'Wrexham';
     :capital <http://abc/mondial/10/countries/GB/provinces/Wrexham/cities/Wrexham>;
     :area 499;
     :population 123500 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/NorthernIreland>. 
   <http://abc/mondial/10/countries/GB/provinces/NorthernIreland> rdf:type :Province ;
     :name 'Northern Ireland';
     :capital <http://abc/mondial/10/countries/GB/provinces/NorthernIreland/cities/Belfast>;
     :area 14120;
     :population 1594400 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Orkneys>. 
   <http://abc/mondial/10/countries/GB/provinces/Orkneys> rdf:type :Province ;
     :name 'Orkneys';
     :capital <http://abc/mondial/10/countries/GB/provinces/Orkneys/cities/Kirkwall>;
     :area 992;
     :population 19590 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/OuterHebrides>. 
   <http://abc/mondial/10/countries/GB/provinces/OuterHebrides> rdf:type :Province ;
     :name 'Outer Hebrides';
     :capital <http://abc/mondial/10/countries/GB/provinces/OuterHebrides/cities/Stornoway>;
     :area 3071;
     :population 26370 . 
 <http://abc/mondial/10/countries/GB> :hasProvince 
   <http://abc/mondial/10/countries/GB/provinces/Shetland>. 
   <http://abc/mondial/10/countries/GB/provinces/Shetland> rdf:type :Province ;
     :name 'Shetland';
     :capital <http://abc/mondial/10/countries/GB/provinces/Shetland/cities/Lerwick>;
     :area 1466;
     :population 22000 . 
 <http://abc/mondial/10/countries/AL/cities/Tirane> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/AL> ;
   :name 'Tirane';
     :population 192000;
     :longitude 19.8;
     :latitude 41.3  . 
 <http://abc/mondial/10/countries/AL/cities/Shkoder> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/AL> ;
   :name 'Shkoder';
     :population 62000;
     :longitude 19.2;
     :latitude 42.2  . 
 <http://abc/mondial/10/countries/AL/cities/Durres> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/AL> ;
   :name 'Durres';
     :population 60000;
     :longitude 19.3;
     :latitude 41.3  . 
 <http://abc/mondial/10/countries/AL/cities/Vlore> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/AL> ;
   :name 'Vlore';
     :population 56000;
     :longitude 19.3;
     :latitude 40.3  . 
 <http://abc/mondial/10/countries/AL/cities/Elbasan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/AL> ;
   :name 'Elbasan';
     :population 53000;
     :longitude 20.1;
     :latitude 41.1  . 
 <http://abc/mondial/10/countries/AL/cities/Korce> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/AL> ;
   :name 'Korce';
     :population 52000;
     :longitude 20.5;
     :latitude 40.4  . 
 <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki/cities/Komotini> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki> ;
   :name 'Komotini'  . 
 <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki/cities/Kavalla> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki> ;
   :name 'Kavalla';
     :population 56705  . 
 <http://abc/mondial/10/countries/GR/provinces/Attiki/cities/Athens> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/Attiki> ;
   :name 'Athens';
     :population 885737;
     :longitude 23.7167;
     :latitude 37.9667  . 
 <http://abc/mondial/10/countries/GR/provinces/Attiki/cities/Piraeus> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/Attiki> ;
   :name 'Piraeus';
     :population 196389  . 
 <http://abc/mondial/10/countries/GR/provinces/DhytikiEllas/cities/Patrai> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/DhytikiEllas> ;
   :name 'Patrai';
     :population 142163  . 
 <http://abc/mondial/10/countries/GR/provinces/DhytikiMakedhonia/cities/Kozani> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/DhytikiMakedhonia> ;
   :name 'Kozani'  . 
 <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi/cities/Korfu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi> ;
   :name 'Korfu'  . 
 <http://abc/mondial/10/countries/GR/provinces/Ipiros/cities/Ioannina> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/Ipiros> ;
   :name 'Ioannina'  . 
 <http://abc/mondial/10/countries/GR/provinces/KedrikiMakedhonia/cities/Thessaloniki> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/KedrikiMakedhonia> ;
   :name 'Thessaloniki';
     :population 406413;
     :longitude 22.95;
     :latitude 40.6167  . 
 <http://abc/mondial/10/countries/GR/provinces/Kriti/cities/Iraklion> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/Kriti> ;
   :name 'Iraklion';
     :population 102398  . 
 <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion/cities/Ermoupoli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion> ;
   :name 'Ermoupoli'  . 
 <http://abc/mondial/10/countries/GR/provinces/Peloponnisos/cities/Tripoli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/Peloponnisos> ;
   :name 'Tripoli'  . 
 <http://abc/mondial/10/countries/GR/provinces/StereaEllas/cities/Lamia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/StereaEllas> ;
   :name 'Lamia'  . 
 <http://abc/mondial/10/countries/GR/provinces/Thessalia/cities/Larisa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/Thessalia> ;
   :name 'Larisa';
     :population 102426  . 
 <http://abc/mondial/10/countries/GR/provinces/Thessalia/cities/Volos> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/Thessalia> ;
   :name 'Volos';
     :population 71378  . 
 <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion/cities/Mytilini> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion> ;
   :name 'Mytilini'  . 
 <http://abc/mondial/10/countries/MK/cities/Skopje> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/MK> ;
   :name 'Skopje';
     :population 506926;
     :longitude 21.4;
     :latitude 42  . 
 <http://abc/mondial/10/countries/SRB/cities/Belgrade> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SRB> ;
   :name 'Belgrade';
     :population 1407073;
     :longitude 20.4667;
     :latitude 44.8  . 
 <http://abc/mondial/10/countries/MNE/cities/Podgorica> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/MNE> ;
   :name 'Podgorica';
     :population 169132;
     :longitude 19.16;
     :latitude 42.26  . 
 <http://abc/mondial/10/countries/KOS/cities/Pristina> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/KOS> ;
   :name 'Pristina';
     :longitude 21.10;
     :latitude 42.40  . 
 <http://abc/mondial/10/countries/AND/cities/AndorralaVella> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/AND> ;
   :name 'Andorra la Vella';
     :population 15600;
     :longitude 1.3;
     :latitude 42.3  . 
 <http://abc/mondial/10/countries/F/provinces/Alsace/cities/Strasbourg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Alsace> ;
   :name 'Strasbourg';
     :population 252338;
     :longitude 7.76667;
     :latitude 48.5833  . 
 <http://abc/mondial/10/countries/F/provinces/Alsace/cities/Mulhouse> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Alsace> ;
   :name 'Mulhouse';
     :population 108357  . 
 <http://abc/mondial/10/countries/F/provinces/Aquitaine/cities/Bordeaux> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Aquitaine> ;
   :name 'Bordeaux';
     :population 210336;
     :longitude -0.4;
     :latitude 44.51  . 
 <http://abc/mondial/10/countries/F/provinces/Auvergne/cities/ClermontFerrand> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Auvergne> ;
   :name 'Clermont Ferrand';
     :population 136181;
     :longitude 3.4;
     :latitude 45.5  . 
 <http://abc/mondial/10/countries/F/provinces/BasseNormandie/cities/Caen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/BasseNormandie> ;
   :name 'Caen';
     :population 112846;
     :longitude -0.2;
     :latitude 49.3  . 
 <http://abc/mondial/10/countries/F/provinces/Bretagne/cities/Rennes> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Bretagne> ;
   :name 'Rennes';
     :population 197536;
     :longitude -1.4;
     :latitude 48.1  . 
 <http://abc/mondial/10/countries/F/provinces/Bretagne/cities/Brest> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Bretagne> ;
   :name 'Brest';
     :population 147956  . 
 <http://abc/mondial/10/countries/F/provinces/Bourgogne/cities/Dijon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Bourgogne> ;
   :name 'Dijon';
     :population 146703;
     :longitude 5.2;
     :latitude 47.2  . 
 <http://abc/mondial/10/countries/F/provinces/Centre/cities/Orleans> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Centre> ;
   :name 'Orleans';
     :population 105111;
     :longitude 1.5;
     :latitude 47.5  . 
 <http://abc/mondial/10/countries/F/provinces/Centre/cities/Tours> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Centre> ;
   :name 'Tours';
     :population 129509  . 
 <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne/cities/Reims> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne> ;
   :name 'Reims';
     :population 180620;
     :longitude 4.5;
     :latitude 49.1  . 
 <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne/cities/ChalonsenChampagne> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne> ;
   :name 'Chalons en Champagne';
     :longitude 4.4;
     :latitude 49.0  . 
 <http://abc/mondial/10/countries/F/provinces/Corse/cities/Ajaccio> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Corse> ;
   :name 'Ajaccio';
     :population 53500;
     :longitude 8.4;
     :latitude 41.4  . 
 <http://abc/mondial/10/countries/F/provinces/FrancheComte/cities/Besancon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/FrancheComte> ;
   :name 'Besancon';
     :population 113828;
     :longitude 6.2;
     :latitude 47.1  . 
 <http://abc/mondial/10/countries/F/provinces/HauteNormandie/cities/Rouen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/HauteNormandie> ;
   :name 'Rouen';
     :population 102723;
     :longitude 1.5;
     :latitude 49.3  . 
 <http://abc/mondial/10/countries/F/provinces/HauteNormandie/cities/LeHavre> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/HauteNormandie> ;
   :name 'Le Havre';
     :population 195854  . 
 <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/IledeFrance> ;
   :name 'Paris';
     :population 2152423;
     :longitude 2.48333;
     :latitude 48.8167  . 
 <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/BoulogneBillancourt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/IledeFrance> ;
   :name 'Boulogne Billancourt';
     :population 101743  . 
 <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon/cities/Montpellier> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon> ;
   :name 'Montpellier';
     :population 207996;
     :longitude 3.5;
     :latitude 43.3  . 
 <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon/cities/Nimes> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon> ;
   :name 'Nimes';
     :population 128471  . 
 <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon/cities/Perpignan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon> ;
   :name 'Perpignan';
     :population 105983  . 
 <http://abc/mondial/10/countries/F/provinces/Limousin/cities/Limoges> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Limousin> ;
   :name 'Limoges';
     :population 133464;
     :longitude 1.2;
     :latitude 45.5  . 
 <http://abc/mondial/10/countries/F/provinces/Lorraine/cities/Metz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Lorraine> ;
   :name 'Metz';
     :population 119594;
     :longitude 6.2;
     :latitude 49.1  . 
 <http://abc/mondial/10/countries/F/provinces/Lorraine/cities/Nancy> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Lorraine> ;
   :name 'Nancy';
     :population 99351;
     :longitude 6.1;
     :latitude 48.4  . 
 <http://abc/mondial/10/countries/F/provinces/MidiPyrenees/cities/Toulouse> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/MidiPyrenees> ;
   :name 'Toulouse';
     :population 358688;
     :longitude 1.2;
     :latitude 43.4  . 
 <http://abc/mondial/10/countries/F/provinces/NordPasdeCalais/cities/Lille> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/NordPasdeCalais> ;
   :name 'Lille';
     :population 172142;
     :longitude 3.3;
     :latitude 50.37  . 
 <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire/cities/Nantes> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire> ;
   :name 'Nantes';
     :population 244995;
     :longitude -1.56667;
     :latitude 47.25  . 
 <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire/cities/Angers> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire> ;
   :name 'Angers';
     :population 141404  . 
 <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire/cities/LeMans> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire> ;
   :name 'Le Mans';
     :population 145502  . 
 <http://abc/mondial/10/countries/F/provinces/Picardie/cities/Amiens> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/Picardie> ;
   :name 'Amiens';
     :population 131872;
     :longitude 2.19;
     :latitude 49.55  . 
 <http://abc/mondial/10/countries/F/provinces/PoitouCharentes/cities/Poitiers> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/PoitouCharentes> ;
   :name 'Poitiers';
     :population 79300;
     :longitude 0.2;
     :latitude 46.4  . 
 <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur/cities/Marseille> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur> ;
   :name 'Marseille';
     :population 800550;
     :longitude 5.2;
     :latitude 43.2  . 
 <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur/cities/Nice> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur> ;
   :name 'Nice';
     :population 342439;
     :longitude 7.26667;
     :latitude 43.7  . 
 <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur/cities/Toulon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur> ;
   :name 'Toulon';
     :population 167619  . 
 <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur/cities/AixenProvence> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur> ;
   :name 'Aix en Provence';
     :population 123842  . 
 <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Lyon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> ;
   :name 'Lyon';
     :population 415487;
     :longitude 4.78333;
     :latitude 45.7  . 
 <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Grenoble> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> ;
   :name 'Grenoble';
     :population 150758  . 
 <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/SaintEtienne> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> ;
   :name 'Saint Etienne';
     :population 199396  . 
 <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Villeurbanne> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> ;
   :name 'Villeurbanne';
     :population 116872  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Sevilla> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Sevilla';
     :population 714148  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Almeria> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Almeria';
     :population 167361  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Cadiz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Cadiz';
     :population 155438;
     :longitude -6.2;
     :latitude 36.3  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Cordoba> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Cordoba';
     :population 315948  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Granada> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Granada';
     :population 271180  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Huelva> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Huelva';
     :population 145049  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Malaga> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Malaga';
     :population 531443  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/JerezdelaFrontera> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Jerez de la Frontera';
     :population 190390  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Jaen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Jaen';
     :population 112772  . 
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Algeciras> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Andalusia> ;
   :name 'Algeciras';
     :population 103787  . 
 <http://abc/mondial/10/countries/E/provinces/Aragon/cities/Zaragoza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Aragon> ;
   :name 'Zaragoza';
     :population 606620  . 
 <http://abc/mondial/10/countries/E/provinces/Asturias/cities/Oviedo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Asturias> ;
   :name 'Oviedo';
     :population 201712  . 
 <http://abc/mondial/10/countries/E/provinces/Asturias/cities/Gijon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Asturias> ;
   :name 'Gijon';
     :population 269644  . 
 <http://abc/mondial/10/countries/E/provinces/BalearicIslands/cities/PalmadeMallorca> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/BalearicIslands> ;
   :name 'Palma de Mallorca';
     :population 322008  . 
 <http://abc/mondial/10/countries/E/provinces/BasqueCountry/cities/VitoriaGasteiz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/BasqueCountry> ;
   :name 'Vitoria Gasteiz';
     :population 214148  . 
 <http://abc/mondial/10/countries/E/provinces/BasqueCountry/cities/Bilbao> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/BasqueCountry> ;
   :name 'Bilbao';
     :population 371876  . 
 <http://abc/mondial/10/countries/E/provinces/BasqueCountry/cities/Baracaldo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/BasqueCountry> ;
   :name 'Baracaldo';
     :population 103594  . 
 <http://abc/mondial/10/countries/E/provinces/BasqueCountry/cities/Donostia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/BasqueCountry> ;
   :name 'Donostia';
     :population 177929  . 
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/SantaCruzdeTenerife> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CanaryIslands> ;
   :name 'Santa Cruz de Tenerife';
     :population 203929  . 
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/LasPalmasdeGranCanaria> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CanaryIslands> ;
   :name 'Las Palmas de Gran Canaria';
     :population 371787  . 
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/LaLaguna> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CanaryIslands> ;
   :name 'La Laguna';
     :population 125183  . 
 <http://abc/mondial/10/countries/E/provinces/Cantabria/cities/Santander> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Cantabria> ;
   :name 'Santander';
     :population 194822  . 
 <http://abc/mondial/10/countries/E/provinces/CastileandLeon/cities/Valladolid> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CastileandLeon> ;
   :name 'Valladolid';
     :population 336917  . 
 <http://abc/mondial/10/countries/E/provinces/CastileandLeon/cities/Burgos> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CastileandLeon> ;
   :name 'Burgos';
     :population 166251  . 
 <http://abc/mondial/10/countries/E/provinces/CastileandLeon/cities/Leon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CastileandLeon> ;
   :name 'Leon';
     :population 147311  . 
 <http://abc/mondial/10/countries/E/provinces/CastileandLeon/cities/Salamanca> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CastileandLeon> ;
   :name 'Salamanca';
     :population 167382  . 
 <http://abc/mondial/10/countries/E/provinces/CastileLaMancha/cities/Toledo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CastileLaMancha> ;
   :name 'Toledo'  . 
 <http://abc/mondial/10/countries/E/provinces/CastileLaMancha/cities/Albacete> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/CastileLaMancha> ;
   :name 'Albacete';
     :population 141179  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Barcelona> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Barcelona';
     :population 1630867;
     :longitude 2.15;
     :latitude 41.4  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Lleida> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Lleida';
     :population 114234  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Tarragona> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Tarragona';
     :population 114630  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/HospitaletdeLlobregat> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Hospitalet de Llobregat';
     :population 266242  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Badalona> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Badalona';
     :population 219340  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Sabadell> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Sabadell';
     :population 189006  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Terrassa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Terrassa';
     :population 161428  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/SantaColomadeGramanet> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Santa Coloma de Gramanet';
     :population 131764  . 
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Mataro> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Catalonia> ;
   :name 'Mataro';
     :population 102117  . 
 <http://abc/mondial/10/countries/E/provinces/Estremadura/cities/Badajoz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Estremadura> ;
   :name 'Badajoz';
     :population 130153  . 
 <http://abc/mondial/10/countries/E/provinces/Estremadura/cities/Merida> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Estremadura> ;
   :name 'Merida'  . 
 <http://abc/mondial/10/countries/E/provinces/Galicia/cities/LaCoruna> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Galicia> ;
   :name 'La Coruna';
     :population 255087  . 
 <http://abc/mondial/10/countries/E/provinces/Galicia/cities/Vigo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Galicia> ;
   :name 'Vigo';
     :population 288573  . 
 <http://abc/mondial/10/countries/E/provinces/Galicia/cities/Orense> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Galicia> ;
   :name 'Orense';
     :population 108547  . 
 <http://abc/mondial/10/countries/E/provinces/Galicia/cities/SantiagodeCompostella> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Galicia> ;
   :name 'Santiago de Compostella'  . 
 <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Madrid> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Madrid> ;
   :name 'Madrid';
     :population 3041101;
     :longitude -3.68333;
     :latitude 40.4167  . 
 <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Mostoles> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Madrid> ;
   :name 'Mostoles';
     :population 199141  . 
 <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Leganes> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Madrid> ;
   :name 'Leganes';
     :population 178162  . 
 <http://abc/mondial/10/countries/E/provinces/Madrid/cities/AlcaladeHenares> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Madrid> ;
   :name 'Alcala de Henares';
     :population 166250  . 
 <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Fuenlabrada> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Madrid> ;
   :name 'Fuenlabrada';
     :population 158212  . 
 <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Getafe> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Madrid> ;
   :name 'Getafe';
     :population 144368  . 
 <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Alcorcon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Madrid> ;
   :name 'Alcorcon';
     :population 142165  . 
 <http://abc/mondial/10/countries/E/provinces/Murcia/cities/Murcia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Murcia> ;
   :name 'Murcia';
     :population 341531  . 
 <http://abc/mondial/10/countries/E/provinces/Murcia/cities/Cartagena> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Murcia> ;
   :name 'Cartagena';
     :population 179659  . 
 <http://abc/mondial/10/countries/E/provinces/Navarre/cities/Pamplona> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Navarre> ;
   :name 'Pamplona';
     :population 182465  . 
 <http://abc/mondial/10/countries/E/provinces/Rioja/cities/Logrono> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Rioja> ;
   :name 'Logrono';
     :population 124823  . 
 <http://abc/mondial/10/countries/E/provinces/Valencia/cities/Valencia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Valencia> ;
   :name 'Valencia';
     :population 764293;
     :longitude -0.383333;
     :latitude 39.4667  . 
 <http://abc/mondial/10/countries/E/provinces/Valencia/cities/Alicante> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Valencia> ;
   :name 'Alicante';
     :population 274964  . 
 <http://abc/mondial/10/countries/E/provinces/Valencia/cities/Elx> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Valencia> ;
   :name 'Elx';
     :population 191305  . 
 <http://abc/mondial/10/countries/E/provinces/Valencia/cities/CastellondelaPlana> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/E/provinces/Valencia> ;
   :name 'Castellon de la Plana';
     :population 139094  . 
 <http://abc/mondial/10/countries/A/provinces/Burgenland/cities/Eisenstadt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/Burgenland> ;
   :name 'Eisenstadt';
     :population 10102;
     :longitude 16;
     :latitude 48  . 
 <http://abc/mondial/10/countries/A/provinces/Carinthia/cities/Klagenfurt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/Carinthia> ;
   :name 'Klagenfurt';
     :population 87321;
     :longitude 14.21;
     :latitude 46.38  . 
 <http://abc/mondial/10/countries/A/provinces/Vorarlberg/cities/Bregenz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/Vorarlberg> ;
   :name 'Bregenz';
     :longitude 9.45;
     :latitude 47.3  . 
 <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/Vienna> ;
   :name 'Vienna';
     :population 1583000;
     :longitude 16.3667;
     :latitude 48.2  . 
 <http://abc/mondial/10/countries/A/provinces/UpperAustria/cities/Linz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/UpperAustria> ;
   :name 'Linz';
     :population 203000;
     :longitude 14.18;
     :latitude 48.18  . 
 <http://abc/mondial/10/countries/A/provinces/Tyrol/cities/Innsbruck> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/Tyrol> ;
   :name 'Innsbruck';
     :population 118000;
     :longitude 11.22;
     :latitude 47.17  . 
 <http://abc/mondial/10/countries/A/provinces/Styria/cities/Graz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/Styria> ;
   :name 'Graz';
     :population 238000;
     :longitude 15.26;
     :latitude 47.4  . 
 <http://abc/mondial/10/countries/A/provinces/Salzburg/cities/Salzburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/Salzburg> ;
   :name 'Salzburg';
     :population 144000;
     :longitude 13.2;
     :latitude 47.49  . 
 <http://abc/mondial/10/countries/A/provinces/LowerAustria/cities/St.Polten> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/A/provinces/LowerAustria> ;
   :name 'St. Polten';
     :population 51102;
     :longitude 15.38;
     :latitude 48.13  . 
 <http://abc/mondial/10/countries/CZ/provinces/Jihocesky/cities/CeskeBudejovice> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Jihocesky> ;
   :name 'Ceske Budejovice';
     :population 174000  . 
 <http://abc/mondial/10/countries/CZ/provinces/Jihomoravsky/cities/Brno> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Jihomoravsky> ;
   :name 'Brno';
     :population 393000  . 
 <http://abc/mondial/10/countries/CZ/provinces/Jihomoravsky/cities/Zlin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Jihomoravsky> ;
   :name 'Zlin';
     :population 198000  . 
 <http://abc/mondial/10/countries/CZ/provinces/Severocesky/cities/Liberec> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Severocesky> ;
   :name 'Liberec';
     :population 160000  . 
 <http://abc/mondial/10/countries/CZ/provinces/Severocesky/cities/UstinadLabem> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Severocesky> ;
   :name 'Usti nad Labem'  . 
 <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky/cities/Ostrava> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky> ;
   :name 'Ostrava';
     :population 332000  . 
 <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky/cities/Olomouc> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky> ;
   :name 'Olomouc';
     :population 225000  . 
 <http://abc/mondial/10/countries/CZ/provinces/Praha/cities/Prague> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Praha> ;
   :name 'Prague';
     :population 1215000;
     :longitude 14.4167;
     :latitude 50.0833  . 
 <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky/cities/HradecKralove> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky> ;
   :name 'Hradec Kralove';
     :population 164000  . 
 <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky/cities/Pardubice> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky> ;
   :name 'Pardubice';
     :population 163000  . 
 <http://abc/mondial/10/countries/CZ/provinces/Zapadocesky/cities/Plzen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CZ/provinces/Zapadocesky> ;
   :name 'Plzen';
     :population 175000  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Stuttgart> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Stuttgart';
     :population 588482;
     :longitude 9.1;
     :latitude 48.7  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Mannheim> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Mannheim';
     :population 316223;
     :longitude 8.46667;
     :latitude 49.5667  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Karlsruhe> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Karlsruhe';
     :population 277011  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/FreiburgimBreisgau> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Freiburg im Breisgau';
     :population 198496  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Heidelberg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Heidelberg';
     :population 138964  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Heilbronn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Heilbronn';
     :population 122253  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Pforzheim> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Pforzheim';
     :population 117960  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Ulm> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Ulm';
     :population 115123  . 
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Reutlingen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> ;
   :name 'Reutlingen';
     :population 107782  . 
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Munich> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bayern> ;
   :name 'Munich';
     :population 1290079;
     :longitude 11.5667;
     :latitude 48.15  . 
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Nurnberg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bayern> ;
   :name 'Nurnberg';
     :population 495845  . 
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Augsburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bayern> ;
   :name 'Augsburg';
     :population 262110  . 
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Wurzburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bayern> ;
   :name 'Wurzburg';
     :population 127946  . 
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Regensburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bayern> ;
   :name 'Regensburg';
     :population 125608  . 
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Ingolstadt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bayern> ;
   :name 'Ingolstadt';
     :population 110910  . 
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Furth> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bayern> ;
   :name 'Furth';
     :population 107799  . 
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Erlangen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bayern> ;
   :name 'Erlangen';
     :population 101450  . 
 <http://abc/mondial/10/countries/D/provinces/Berlin/cities/Berlin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Berlin> ;
   :name 'Berlin';
     :population 3472009;
     :longitude 13.3;
     :latitude 52.45  . 
 <http://abc/mondial/10/countries/D/provinces/Brandenburg/cities/Potsdam> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Brandenburg> ;
   :name 'Potsdam';
     :population 138268;
     :longitude 13.1;
     :latitude 52.4  . 
 <http://abc/mondial/10/countries/D/provinces/Brandenburg/cities/Cottbus> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Brandenburg> ;
   :name 'Cottbus';
     :population 125643  . 
 <http://abc/mondial/10/countries/D/provinces/Bremen/cities/Bremen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bremen> ;
   :name 'Bremen';
     :population 549182;
     :longitude 8.5;
     :latitude 53.7  . 
 <http://abc/mondial/10/countries/D/provinces/Bremen/cities/Bremerhaven> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Bremen> ;
   :name 'Bremerhaven';
     :population 130847  . 
 <http://abc/mondial/10/countries/D/provinces/Hamburg/cities/Hamburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Hamburg> ;
   :name 'Hamburg';
     :population 1705872;
     :longitude 9.96667;
     :latitude 53.55  . 
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/Wiesbaden> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Hessen> ;
   :name 'Wiesbaden';
     :population 266081;
     :longitude 8.17;
     :latitude 50.07  . 
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/FrankfurtamMain> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Hessen> ;
   :name 'Frankfurt am Main';
     :population 652412  . 
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/Kassel> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Hessen> ;
   :name 'Kassel';
     :population 201789  . 
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/Darmstadt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Hessen> ;
   :name 'Darmstadt';
     :population 139063  . 
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/OffenbachamMain> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Hessen> ;
   :name 'Offenbach am Main';
     :population 116482  . 
 <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern/cities/Schwerin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern> ;
   :name 'Schwerin';
     :population 118291;
     :longitude 11.5;
     :latitude 53.9  . 
 <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern/cities/Rostock> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern> ;
   :name 'Rostock';
     :population 232634;
     :longitude 12.1;
     :latitude 54.1  . 
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Hannover> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Niedersachsen> ;
   :name 'Hannover';
     :population 525763;
     :longitude 9.66667;
     :latitude 52.4  . 
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Braunschweig> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Niedersachsen> ;
   :name 'Braunschweig';
     :population 254130  . 
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Osnabruck> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Niedersachsen> ;
   :name 'Osnabruck';
     :population 168050  . 
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Oldenburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Niedersachsen> ;
   :name 'Oldenburg';
     :population 149691  . 
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Gottingen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Niedersachsen> ;
   :name 'Gottingen';
     :population 127519  . 
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Wolfsburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Niedersachsen> ;
   :name 'Wolfsburg';
     :population 126965  . 
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Salzgitter> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Niedersachsen> ;
   :name 'Salzgitter';
     :population 117842  . 
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Hildesheim> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Niedersachsen> ;
   :name 'Hildesheim';
     :population 106095  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Dusseldorf> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Dusseldorf';
     :population 572638;
     :longitude 6.8;
     :latitude 51.2  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Koln> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Koln';
     :population 963817  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Essen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Essen';
     :population 617955  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Dortmund> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Dortmund';
     :population 600918  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Duisburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Duisburg';
     :population 536106  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Bochum> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Bochum';
     :population 401129  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Wuppertal> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Wuppertal';
     :population 383776  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Bielefeld> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Bielefeld';
     :population 324067  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Gelsenkirchen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Gelsenkirchen';
     :population 293542  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Bonn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Bonn';
     :population 293072;
     :longitude 7.5;
     :latitude 50.4  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Monchengladbach> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Monchengladbach';
     :population 266073  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Munster> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Munster';
     :population 264887  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Krefeld> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Krefeld';
     :population 249662  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Aachen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Aachen';
     :population 247113  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Oberhausen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Oberhausen';
     :population 225443  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Hagen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Hagen';
     :population 213747  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Hamm> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Hamm';
     :population 184020  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Herne> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Herne';
     :population 180029  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/MulheimanderRuhr> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Mulheim an der Ruhr';
     :population 176513  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Solingen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Solingen';
     :population 165973  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Leverkusen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Leverkusen';
     :population 161832  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Neuss> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Neuss';
     :population 148870  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Paderborn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Paderborn';
     :population 131513  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Recklinghausen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Recklinghausen';
     :population 127139  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Remscheid> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Remscheid';
     :population 123069  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Bottrop> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Bottrop';
     :population 119669  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Siegen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Siegen';
     :population 111541  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Moers> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Moers';
     :population 107011  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Witten> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Witten';
     :population 105423  . 
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/BergischGladbach> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> ;
   :name 'Bergisch Gladbach';
     :population 105122  . 
 <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Mainz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> ;
   :name 'Mainz';
     :population 184627;
     :longitude 8.1;
     :latitude 50  . 
 <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Ludwigshafen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> ;
   :name 'Ludwigshafen';
     :population 167883  . 
 <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Koblenz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> ;
   :name 'Koblenz';
     :population 109550  . 
 <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Kaiserslautern> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> ;
   :name 'Kaiserslautern';
     :population 101910  . 
 <http://abc/mondial/10/countries/D/provinces/Saarland/cities/Saarbrucken> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Saarland> ;
   :name 'Saarbrucken';
     :population 183945;
     :longitude 6.6;
     :latitude 49.1  . 
 <http://abc/mondial/10/countries/D/provinces/Sachsen/cities/Dresden> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Sachsen> ;
   :name 'Dresden';
     :population 474443;
     :longitude 13.7;
     :latitude 51.05  . 
 <http://abc/mondial/10/countries/D/provinces/Sachsen/cities/Leipzig> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Sachsen> ;
   :name 'Leipzig';
     :population 481121  . 
 <http://abc/mondial/10/countries/D/provinces/Sachsen/cities/Chemnitz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Sachsen> ;
   :name 'Chemnitz';
     :population 274162  . 
 <http://abc/mondial/10/countries/D/provinces/Sachsen/cities/Zwickau> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Sachsen> ;
   :name 'Zwickau';
     :population 104921  . 
 <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt/cities/Magdeburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt> ;
   :name 'Magdeburg';
     :population 265379;
     :longitude 11.6;
     :latitude 52.1  . 
 <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt/cities/Halle> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt> ;
   :name 'Halle';
     :population 290051  . 
 <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein/cities/Kiel> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> ;
   :name 'Kiel';
     :population 246586;
     :longitude 10.7;
     :latitude 54.2  . 
 <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein/cities/Lubeck> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> ;
   :name 'Lubeck';
     :population 216854  . 
 <http://abc/mondial/10/countries/D/provinces/Thuringen/cities/Erfurt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Thuringen> ;
   :name 'Erfurt';
     :population 213472;
     :longitude 11.0;
     :latitude 51.0  . 
 <http://abc/mondial/10/countries/D/provinces/Thuringen/cities/Gera> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Thuringen> ;
   :name 'Gera';
     :population 126035  . 
 <http://abc/mondial/10/countries/D/provinces/Thuringen/cities/Jena> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/D/provinces/Thuringen> ;
   :name 'Jena';
     :population 102204  . 
 <http://abc/mondial/10/countries/H/provinces/BacsKiskun/cities/Kecskemet> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/BacsKiskun> ;
   :name 'Kecskemet';
     :population 105000  . 
 <http://abc/mondial/10/countries/H/provinces/Bekes/cities/Bekescaba> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Bekes> ;
   :name 'Bekescaba'  . 
 <http://abc/mondial/10/countries/H/provinces/Csongrad/cities/Hodmezovasarhely> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Csongrad> ;
   :name 'Hodmezovasarhely'  . 
 <http://abc/mondial/10/countries/H/provinces/Fejer/cities/Szekesfehervar> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Fejer> ;
   :name 'Szekesfehervar';
     :population 109000  . 
 <http://abc/mondial/10/countries/H/provinces/Heves/cities/Eger> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Heves> ;
   :name 'Eger'  . 
 <http://abc/mondial/10/countries/H/provinces/KomaromEsztergom/cities/Tatabanya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/KomaromEsztergom> ;
   :name 'Tatabanya'  . 
 <http://abc/mondial/10/countries/H/provinces/Nograd/cities/Salgotarjan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Nograd> ;
   :name 'Salgotarjan'  . 
 <http://abc/mondial/10/countries/H/provinces/Somogy/cities/Kaposvar> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Somogy> ;
   :name 'Kaposvar'  . 
 <http://abc/mondial/10/countries/H/provinces/SzabolcsSzatmar/cities/Nyiregyhaza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/SzabolcsSzatmar> ;
   :name 'Nyiregyhaza';
     :population 115000  . 
 <http://abc/mondial/10/countries/H/provinces/Szolnok/cities/Szolnok> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Szolnok> ;
   :name 'Szolnok'  . 
 <http://abc/mondial/10/countries/H/provinces/Tolna/cities/Szekszard> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Tolna> ;
   :name 'Szekszard'  . 
 <http://abc/mondial/10/countries/H/provinces/Vas/cities/Szombathely> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Vas> ;
   :name 'Szombathely'  . 
 <http://abc/mondial/10/countries/H/provinces/Veszprem/cities/Veszprem> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Veszprem> ;
   :name 'Veszprem'  . 
 <http://abc/mondial/10/countries/H/provinces/Zala/cities/Zalaegerszeg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Zala> ;
   :name 'Zalaegerszeg'  . 
 <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-/cities/Budapest> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-> ;
   :name 'Budapest';
     :population 2016000;
     :longitude 19.0333;
     :latitude 47.5167  . 
 <http://abc/mondial/10/countries/H/provinces/Debrecen-munic.-/cities/Debrecen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Debrecen-munic.-> ;
   :name 'Debrecen';
     :population 216000  . 
 <http://abc/mondial/10/countries/H/provinces/Gyor-munic.-/cities/Gyor> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Gyor-munic.-> ;
   :name 'Gyor';
     :population 130000  . 
 <http://abc/mondial/10/countries/H/provinces/Miskolc-munic.-/cities/Miskolc> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Miskolc-munic.-> ;
   :name 'Miskolc';
     :population 192000  . 
 <http://abc/mondial/10/countries/H/provinces/Pecs-munic.-/cities/Pecs> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Pecs-munic.-> ;
   :name 'Pecs';
     :population 171000  . 
 <http://abc/mondial/10/countries/H/provinces/Szeged-munic.-/cities/Szeged> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/H/provinces/Szeged-munic.-> ;
   :name 'Szeged';
     :population 178000  . 
 <http://abc/mondial/10/countries/I/provinces/Piemonte/cities/Novara> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Piemonte> ;
   :name 'Novara';
     :population 103349  . 
 <http://abc/mondial/10/countries/I/provinces/Piemonte/cities/Turin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Piemonte> ;
   :name 'Turin';
     :population 991870;
     :longitude 7.39;
     :latitude 45.5  . 
 <http://abc/mondial/10/countries/I/provinces/ValledAosta/cities/Aosta> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/ValledAosta> ;
   :name 'Aosta';
     :longitude 7.22;
     :latitude 45.45  . 
 <http://abc/mondial/10/countries/I/provinces/Lombardia/cities/Bergamo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Lombardia> ;
   :name 'Bergamo';
     :population 117886  . 
 <http://abc/mondial/10/countries/I/provinces/Lombardia/cities/Brescia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Lombardia> ;
   :name 'Brescia';
     :population 196766  . 
 <http://abc/mondial/10/countries/I/provinces/Lombardia/cities/Milan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Lombardia> ;
   :name 'Milan';
     :population 1432184;
     :longitude 9.28333;
     :latitude 45.45  . 
 <http://abc/mondial/10/countries/I/provinces/Lombardia/cities/Monza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Lombardia> ;
   :name 'Monza';
     :population 123188  . 
 <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige/cities/Bolzano> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige> ;
   :name 'Bolzano';
     :population 100380;
     :longitude 11.5;
     :latitude 46  . 
 <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige/cities/Trento> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige> ;
   :name 'Trento';
     :population 102124;
     :longitude 11.5;
     :latitude 46  . 
 <http://abc/mondial/10/countries/I/provinces/Veneto/cities/Padova> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Veneto> ;
   :name 'Padova';
     :population 218186  . 
 <http://abc/mondial/10/countries/I/provinces/Veneto/cities/Verona> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Veneto> ;
   :name 'Verona';
     :population 258946  . 
 <http://abc/mondial/10/countries/I/provinces/Veneto/cities/Vicenza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Veneto> ;
   :name 'Vicenza';
     :population 109333  . 
 <http://abc/mondial/10/countries/I/provinces/Veneto/cities/Venice> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Veneto> ;
   :name 'Venice';
     :population 317837;
     :longitude 12.2;
     :latitude 45.27  . 
 <http://abc/mondial/10/countries/I/provinces/FriuliVeneziaGiulia/cities/Trieste> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/FriuliVeneziaGiulia> ;
   :name 'Trieste';
     :population 231047;
     :longitude 13.45;
     :latitude 45.39  . 
 <http://abc/mondial/10/countries/I/provinces/Liguria/cities/LaSpezia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Liguria> ;
   :name 'La Spezia';
     :population 103008  . 
 <http://abc/mondial/10/countries/I/provinces/Liguria/cities/Genua> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Liguria> ;
   :name 'Genua';
     :population 701032;
     :longitude 8.58;
     :latitude 44.25  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Bologna> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Bologna';
     :population 411803;
     :longitude 11.22;
     :latitude 44.3  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Ferrara> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Ferrara';
     :population 140600  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Forli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Forli';
     :population 109755  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Modena> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Modena';
     :population 177501  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Parma> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Parma';
     :population 173991  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Piacenza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Piacenza';
     :population 103536  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Ravenna> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Ravenna';
     :population 136724  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/ReggionellEmilia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Reggio nellEmilia';
     :population 131880  . 
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Rimini> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> ;
   :name 'Rimini';
     :population 130896  . 
 <http://abc/mondial/10/countries/I/provinces/Toscana/cities/Livorno> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Toscana> ;
   :name 'Livorno';
     :population 171265  . 
 <http://abc/mondial/10/countries/I/provinces/Toscana/cities/Pisa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Toscana> ;
   :name 'Pisa';
     :population 101500  . 
 <http://abc/mondial/10/countries/I/provinces/Toscana/cities/Firenze> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Toscana> ;
   :name 'Firenze';
     :population 408403;
     :longitude 11.17;
     :latitude 43.48  . 
 <http://abc/mondial/10/countries/I/provinces/Toscana/cities/Prato> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Toscana> ;
   :name 'Prato';
     :population 166688  . 
 <http://abc/mondial/10/countries/I/provinces/Umbria/cities/Perugia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Umbria> ;
   :name 'Perugia';
     :population 150576;
     :longitude 12.2;
     :latitude 43.1  . 
 <http://abc/mondial/10/countries/I/provinces/Umbria/cities/Terni> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Umbria> ;
   :name 'Terni';
     :population 109809  . 
 <http://abc/mondial/10/countries/I/provinces/Marche/cities/Ancona> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Marche> ;
   :name 'Ancona';
     :population 103268;
     :longitude 13.28;
     :latitude 43.38  . 
 <http://abc/mondial/10/countries/I/provinces/Lazio/cities/Rome> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Lazio> ;
   :name 'Rome';
     :population 2791354;
     :longitude 12.6;
     :latitude 41.8  . 
 <http://abc/mondial/10/countries/I/provinces/Lazio/cities/Latina> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Lazio> ;
   :name 'Latina';
     :population 103630  . 
 <http://abc/mondial/10/countries/I/provinces/Abruzzo/cities/Pescara> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Abruzzo> ;
   :name 'Pescara';
     :population 128553  . 
 <http://abc/mondial/10/countries/I/provinces/Abruzzo/cities/LAquila> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Abruzzo> ;
   :name 'LAquila';
     :longitude 13.2;
     :latitude 42.24  . 
 <http://abc/mondial/10/countries/I/provinces/Molise/cities/Campobasso> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Molise> ;
   :name 'Campobasso';
     :longitude 14.5;
     :latitude 41.5  . 
 <http://abc/mondial/10/countries/I/provinces/Campania/cities/Salerno> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Campania> ;
   :name 'Salerno';
     :population 151374  . 
 <http://abc/mondial/10/countries/I/provinces/Campania/cities/Napoli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Campania> ;
   :name 'Napoli';
     :population 1206013;
     :longitude 14.15;
     :latitude 40.5  . 
 <http://abc/mondial/10/countries/I/provinces/Campania/cities/TorredelGreco> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Campania> ;
   :name 'Torre del Greco';
     :population 102647  . 
 <http://abc/mondial/10/countries/I/provinces/Puglia/cities/Bari> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Puglia> ;
   :name 'Bari';
     :population 353032;
     :longitude 16.5;
     :latitude 41.8  . 
 <http://abc/mondial/10/countries/I/provinces/Puglia/cities/Foggia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Puglia> ;
   :name 'Foggia';
     :population 159541  . 
 <http://abc/mondial/10/countries/I/provinces/Puglia/cities/Lecce> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Puglia> ;
   :name 'Lecce';
     :population 102344  . 
 <http://abc/mondial/10/countries/I/provinces/Puglia/cities/Taranto> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Puglia> ;
   :name 'Taranto';
     :population 244033  . 
 <http://abc/mondial/10/countries/I/provinces/Basilicata/cities/Potenza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Basilicata> ;
   :name 'Potenza';
     :longitude 15.47;
     :latitude 40.4  . 
 <http://abc/mondial/10/countries/I/provinces/Calabria/cities/Catanzaro> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Calabria> ;
   :name 'Catanzaro';
     :population 103802;
     :longitude 16.35;
     :latitude 38.55  . 
 <http://abc/mondial/10/countries/I/provinces/Calabria/cities/Cosenza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Calabria> ;
   :name 'Cosenza';
     :population 104483  . 
 <http://abc/mondial/10/countries/I/provinces/Calabria/cities/ReggiodiCalabria> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Calabria> ;
   :name 'Reggio di Calabria';
     :population 178496  . 
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Palermo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Sicilia> ;
   :name 'Palermo';
     :population 734238;
     :longitude 13.2;
     :latitude 38.1  . 
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Messina> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Sicilia> ;
   :name 'Messina';
     :population 274846  . 
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Catania> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Sicilia> ;
   :name 'Catania';
     :population 364176  . 
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Siracusa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Sicilia> ;
   :name 'Siracusa';
     :population 125444  . 
 <http://abc/mondial/10/countries/I/provinces/Sardegna/cities/Cagliari> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Sardegna> ;
   :name 'Cagliari';
     :population 211719;
     :longitude 9.5;
     :latitude 39.15  . 
 <http://abc/mondial/10/countries/I/provinces/Sardegna/cities/Sassari> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/I/provinces/Sardegna> ;
   :name 'Sassari';
     :population 120011  . 
 <http://abc/mondial/10/countries/FL/cities/Vaduz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/FL> ;
   :name 'Vaduz';
     :population 27714;
     :longitude 9.3;
     :latitude 47.08  . 
 <http://abc/mondial/10/countries/SK/cities/Bratislava> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SK> ;
   :name 'Bratislava';
     :longitude 17.1;
     :latitude 48.1  . 
 <http://abc/mondial/10/countries/SLO/cities/Ljubljana> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SLO> ;
   :name 'Ljubljana';
     :longitude 14.5;
     :latitude 46.05  . 
 <http://abc/mondial/10/countries/CH/provinces/AG/cities/Aarau> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/AG> ;
   :name 'Aarau'  . 
 <http://abc/mondial/10/countries/CH/provinces/AR/cities/Herisau> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/AR> ;
   :name 'Herisau'  . 
 <http://abc/mondial/10/countries/CH/provinces/AI/cities/Appenzell> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/AI> ;
   :name 'Appenzell'  . 
 <http://abc/mondial/10/countries/CH/provinces/BL/cities/Liestal> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/BL> ;
   :name 'Liestal'  . 
 <http://abc/mondial/10/countries/CH/provinces/BS/cities/Basel> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/BS> ;
   :name 'Basel';
     :population 172768  . 
 <http://abc/mondial/10/countries/CH/provinces/BE/cities/Bern> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/BE> ;
   :name 'Bern';
     :population 134393;
     :longitude 7.3;
     :latitude 46.6  . 
 <http://abc/mondial/10/countries/CH/provinces/BE/cities/Biel> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/BE> ;
   :name 'Biel';
     :population 53308  . 
 <http://abc/mondial/10/countries/CH/provinces/FR/cities/Fribourg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/FR> ;
   :name 'Fribourg'  . 
 <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/GE> ;
   :name 'Geneva';
     :population 167697;
     :longitude 6.9;
     :latitude 46.12  . 
 <http://abc/mondial/10/countries/CH/provinces/GL/cities/Glarus> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/GL> ;
   :name 'Glarus'  . 
 <http://abc/mondial/10/countries/CH/provinces/GR/cities/Chur> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/GR> ;
   :name 'Chur'  . 
 <http://abc/mondial/10/countries/CH/provinces/JU/cities/Delemont> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/JU> ;
   :name 'Delemont'  . 
 <http://abc/mondial/10/countries/CH/provinces/LU/cities/Luzern> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/LU> ;
   :name 'Luzern';
     :population 59811  . 
 <http://abc/mondial/10/countries/CH/provinces/NE/cities/Neuchatel> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/NE> ;
   :name 'Neuchatel'  . 
 <http://abc/mondial/10/countries/CH/provinces/NW/cities/Stans> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/NW> ;
   :name 'Stans'  . 
 <http://abc/mondial/10/countries/CH/provinces/OW/cities/Sarnen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/OW> ;
   :name 'Sarnen'  . 
 <http://abc/mondial/10/countries/CH/provinces/SG/cities/SanktGallen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/SG> ;
   :name 'Sankt Gallen';
     :population 74106  . 
 <http://abc/mondial/10/countries/CH/provinces/SH/cities/Schaffhausen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/SH> ;
   :name 'Schaffhausen'  . 
 <http://abc/mondial/10/countries/CH/provinces/SZ/cities/Schwyz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/SZ> ;
   :name 'Schwyz'  . 
 <http://abc/mondial/10/countries/CH/provinces/SO/cities/Solothurn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/SO> ;
   :name 'Solothurn'  . 
 <http://abc/mondial/10/countries/CH/provinces/TG/cities/Frauenfeld> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/TG> ;
   :name 'Frauenfeld'  . 
 <http://abc/mondial/10/countries/CH/provinces/TI/cities/Bellinzona> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/TI> ;
   :name 'Bellinzona'  . 
 <http://abc/mondial/10/countries/CH/provinces/UR/cities/Altdorf> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/UR> ;
   :name 'Altdorf'  . 
 <http://abc/mondial/10/countries/CH/provinces/VS/cities/Sion> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/VS> ;
   :name 'Sion'  . 
 <http://abc/mondial/10/countries/CH/provinces/VD/cities/Lausanne> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/VD> ;
   :name 'Lausanne';
     :population 123149  . 
 <http://abc/mondial/10/countries/CH/provinces/ZG/cities/Zug> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/ZG> ;
   :name 'Zug'  . 
 <http://abc/mondial/10/countries/CH/provinces/ZH/cities/Zurich> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/ZH> ;
   :name 'Zurich';
     :population 343106  . 
 <http://abc/mondial/10/countries/CH/provinces/ZH/cities/Winterthur> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CH/provinces/ZH> ;
   :name 'Winterthur';
     :population 86340  . 
 <http://abc/mondial/10/countries/BY/cities/Minsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/BY> ;
   :name 'Minsk';
     :population 1540000;
     :longitude 27.55;
     :latitude 53.9  . 
 <http://abc/mondial/10/countries/LV/cities/Riga> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/LV> ;
   :name 'Riga';
     :population 900000;
     :longitude 24.1;
     :latitude 57  . 
 <http://abc/mondial/10/countries/LT/cities/Vilnius> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/LT> ;
   :name 'Vilnius';
     :population 566000;
     :longitude 25.3;
     :latitude 54.4  . 
 <http://abc/mondial/10/countries/PL/provinces/Warszwaskie/cities/Warsaw> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Warszwaskie> ;
   :name 'Warsaw';
     :population 1655000;
     :longitude 21.0333;
     :latitude 52.2167  . 
 <http://abc/mondial/10/countries/PL/provinces/Bialskopodlaskie/cities/BialaPodlaska> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Bialskopodlaskie> ;
   :name 'Biala Podlaska'  . 
 <http://abc/mondial/10/countries/PL/provinces/Bialostockie/cities/Bialystok> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Bialostockie> ;
   :name 'Bialystok';
     :population 268000  . 
 <http://abc/mondial/10/countries/PL/provinces/Bielskie/cities/BielskoBiala> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Bielskie> ;
   :name 'Bielsko Biala';
     :population 180000  . 
 <http://abc/mondial/10/countries/PL/provinces/Bydgoskie/cities/Bydgoszcz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Bydgoskie> ;
   :name 'Bydgoszcz';
     :population 380000  . 
 <http://abc/mondial/10/countries/PL/provinces/Chelmskie/cities/Chelm> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Chelmskie> ;
   :name 'Chelm'  . 
 <http://abc/mondial/10/countries/PL/provinces/Ciechanowskie/cities/Ciechanow> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Ciechanowskie> ;
   :name 'Ciechanow'  . 
 <http://abc/mondial/10/countries/PL/provinces/Czestochowskie/cities/Czestochowa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Czestochowskie> ;
   :name 'Czestochowa';
     :population 258000  . 
 <http://abc/mondial/10/countries/PL/provinces/Elblaskie/cities/Elblag> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Elblaskie> ;
   :name 'Elblag';
     :population 125000  . 
 <http://abc/mondial/10/countries/PL/provinces/Gdanskie/cities/Gdansk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Gdanskie> ;
   :name 'Gdansk';
     :population 465000  . 
 <http://abc/mondial/10/countries/PL/provinces/Gdanskie/cities/Gdynia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Gdanskie> ;
   :name 'Gdynia';
     :population 251000  . 
 <http://abc/mondial/10/countries/PL/provinces/Gorzowskie/cities/GorzowWielkopolski> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Gorzowskie> ;
   :name 'Gorzow Wielkopolski';
     :population 123000  . 
 <http://abc/mondial/10/countries/PL/provinces/Gorzowskie/cities/GorzowWielkopolskie> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Gorzowskie> ;
   :name 'Gorzow Wielkopolskie'  . 
 <http://abc/mondial/10/countries/PL/provinces/Jeleniogorskie/cities/JeleniaGora> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Jeleniogorskie> ;
   :name 'Jelenia Gora'  . 
 <http://abc/mondial/10/countries/PL/provinces/Kaliskie/cities/Kalisz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Kaliskie> ;
   :name 'Kalisz';
     :population 106000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Katowice> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Katowice';
     :population 367000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/JastrzebieZdroj> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Jastrzebie Zdroj';
     :population 103000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Sosnowiec> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Sosnowiec';
     :population 259000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/DabrowaGornicza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Dabrowa Gornicza';
     :population 136000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Bytom> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Bytom';
     :population 230000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Gliwice> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Gliwice';
     :population 216000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Zabrze> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Zabrze';
     :population 203000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Tychy> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Tychy';
     :population 190000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/RudaSlaska> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Ruda Slaska';
     :population 170000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Rybnik> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Rybnik';
     :population 143000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/Chorzow> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Chorzow';
     :population 133000  . 
 <http://abc/mondial/10/countries/PL/provinces/Katowickie/cities/WodzilawSlaski> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Katowickie> ;
   :name 'Wodzilaw Slaski';
     :population 111000  . 
 <http://abc/mondial/10/countries/PL/provinces/Kieleckie/cities/Kielce> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Kieleckie> ;
   :name 'Kielce';
     :population 213000  . 
 <http://abc/mondial/10/countries/PL/provinces/Koninskie/cities/Konin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Koninskie> ;
   :name 'Konin'  . 
 <http://abc/mondial/10/countries/PL/provinces/Koszalinskie/cities/Koszalin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Koszalinskie> ;
   :name 'Koszalin';
     :population 108000  . 
 <http://abc/mondial/10/countries/PL/provinces/Krakowskie/cities/Krakow> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Krakowskie> ;
   :name 'Krakow';
     :population 748000;
     :longitude 19.95;
     :latitude 50.0667  . 
 <http://abc/mondial/10/countries/PL/provinces/Krosnienskie/cities/Krosno> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Krosnienskie> ;
   :name 'Krosno'  . 
 <http://abc/mondial/10/countries/PL/provinces/Legnickie/cities/Legnica> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Legnickie> ;
   :name 'Legnica';
     :population 104000  . 
 <http://abc/mondial/10/countries/PL/provinces/Leszczynskie/cities/Leszno> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Leszczynskie> ;
   :name 'Leszno'  . 
 <http://abc/mondial/10/countries/PL/provinces/Lubelskie/cities/Lublin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Lubelskie> ;
   :name 'Lublin';
     :population 350000  . 
 <http://abc/mondial/10/countries/PL/provinces/Lomzynskie/cities/Lomza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Lomzynskie> ;
   :name 'Lomza'  . 
 <http://abc/mondial/10/countries/PL/provinces/Lodzkie/cities/Lodz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Lodzkie> ;
   :name 'Lodz';
     :population 852000  . 
 <http://abc/mondial/10/countries/PL/provinces/Nowosadeckie/cities/NowySacz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Nowosadeckie> ;
   :name 'Nowy Sacz'  . 
 <http://abc/mondial/10/countries/PL/provinces/Olsztynskie/cities/Olsztyn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Olsztynskie> ;
   :name 'Olsztyn';
     :population 161000  . 
 <http://abc/mondial/10/countries/PL/provinces/Opolskie/cities/Opole> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Opolskie> ;
   :name 'Opole';
     :population 128000  . 
 <http://abc/mondial/10/countries/PL/provinces/Ostroleckie/cities/Ostroleka> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Ostroleckie> ;
   :name 'Ostroleka'  . 
 <http://abc/mondial/10/countries/PL/provinces/Pilskie/cities/Pila> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Pilskie> ;
   :name 'Pila'  . 
 <http://abc/mondial/10/countries/PL/provinces/Piotrkowskie/cities/PiotrkowTrybunalski> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Piotrkowskie> ;
   :name 'Piotrkow Trybunalski'  . 
 <http://abc/mondial/10/countries/PL/provinces/Plockie/cities/Plock> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Plockie> ;
   :name 'Plock';
     :population 122000  . 
 <http://abc/mondial/10/countries/PL/provinces/Poznanskie/cities/Poznan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Poznanskie> ;
   :name 'Poznan';
     :population 589000  . 
 <http://abc/mondial/10/countries/PL/provinces/Przemyskie/cities/Przemysl> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Przemyskie> ;
   :name 'Przemysl'  . 
 <http://abc/mondial/10/countries/PL/provinces/Radomskie/cities/Radom> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Radomskie> ;
   :name 'Radom';
     :population 226000  . 
 <http://abc/mondial/10/countries/PL/provinces/Rzeszowskie/cities/Rzeszow> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Rzeszowskie> ;
   :name 'Rzeszow';
     :population 151000  . 
 <http://abc/mondial/10/countries/PL/provinces/Siedleckie/cities/Siedlce> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Siedleckie> ;
   :name 'Siedlce'  . 
 <http://abc/mondial/10/countries/PL/provinces/Sieradzkie/cities/Sieradz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Sieradzkie> ;
   :name 'Sieradz'  . 
 <http://abc/mondial/10/countries/PL/provinces/Skierniewickie/cities/Skierniewice> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Skierniewickie> ;
   :name 'Skierniewice'  . 
 <http://abc/mondial/10/countries/PL/provinces/Slupskie/cities/Slupsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Slupskie> ;
   :name 'Slupsk'  . 
 <http://abc/mondial/10/countries/PL/provinces/Suwalskie/cities/Suwalki> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Suwalskie> ;
   :name 'Suwalki'  . 
 <http://abc/mondial/10/countries/PL/provinces/Szczecinskie/cities/Szczecin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Szczecinskie> ;
   :name 'Szczecin';
     :population 412000  . 
 <http://abc/mondial/10/countries/PL/provinces/Tarnobrzeskie/cities/Tarnobrzeg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Tarnobrzeskie> ;
   :name 'Tarnobrzeg'  . 
 <http://abc/mondial/10/countries/PL/provinces/Tarnowskie/cities/Tarnow> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Tarnowskie> ;
   :name 'Tarnow';
     :population 120000  . 
 <http://abc/mondial/10/countries/PL/provinces/Torunskie/cities/Torun> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Torunskie> ;
   :name 'Torun';
     :population 201000  . 
 <http://abc/mondial/10/countries/PL/provinces/Torunskie/cities/Grudziadz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Torunskie> ;
   :name 'Grudziadz';
     :population 101000  . 
 <http://abc/mondial/10/countries/PL/provinces/Walbrzyskie/cities/Walbrzych> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Walbrzyskie> ;
   :name 'Walbrzych';
     :population 141000  . 
 <http://abc/mondial/10/countries/PL/provinces/Wloclawskie/cities/Wloclawek> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Wloclawskie> ;
   :name 'Wloclawek';
     :population 121000  . 
 <http://abc/mondial/10/countries/PL/provinces/Wroclawskie/cities/Wroclaw> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Wroclawskie> ;
   :name 'Wroclaw';
     :population 642000  . 
 <http://abc/mondial/10/countries/PL/provinces/Zamojskie/cities/Zamosc> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Zamojskie> ;
   :name 'Zamosc'  . 
 <http://abc/mondial/10/countries/PL/provinces/Zielonogorskie/cities/ZielonaGora> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/PL/provinces/Zielonogorskie> ;
   :name 'Zielona Gora';
     :population 113000  . 
 <http://abc/mondial/10/countries/UA/provinces/Cherkaska/cities/Cherkasy> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Cherkaska> ;
   :name 'Cherkasy';
     :population 297000  . 
 <http://abc/mondial/10/countries/UA/provinces/Chernihivska/cities/Chernihiv> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Chernihivska> ;
   :name 'Chernihiv';
     :population 301000  . 
 <http://abc/mondial/10/countries/UA/provinces/Chernivetska/cities/Chernivtsi> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Chernivetska> ;
   :name 'Chernivtsi';
     :population 257000  . 
 <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska/cities/Dnipropetrovsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska> ;
   :name 'Dnipropetrovsk';
     :population 1187000  . 
 <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska/cities/KryvyyRih> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska> ;
   :name 'Kryvyy Rih';
     :population 717000  . 
 <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska/cities/Dniprodzerzhynsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska> ;
   :name 'Dniprodzerzhynsk';
     :population 284000  . 
 <http://abc/mondial/10/countries/UA/provinces/Donetska/cities/Donetsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Donetska> ;
   :name 'Donetsk';
     :population 1117000  . 
 <http://abc/mondial/10/countries/UA/provinces/Donetska/cities/Mariupol> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Donetska> ;
   :name 'Mariupol';
     :population 520000  . 
 <http://abc/mondial/10/countries/UA/provinces/Donetska/cities/Makiyivka> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Donetska> ;
   :name 'Makiyivka';
     :population 427000  . 
 <http://abc/mondial/10/countries/UA/provinces/Donetska/cities/Horlivka> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Donetska> ;
   :name 'Horlivka';
     :population 338000  . 
 <http://abc/mondial/10/countries/UA/provinces/IvanoFrankivska/cities/IvanoFrankivsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/IvanoFrankivska> ;
   :name 'Ivano Frankivsk';
     :population 220000  . 
 <http://abc/mondial/10/countries/UA/provinces/Kharkivska/cities/Kharkiv> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Kharkivska> ;
   :name 'Kharkiv';
     :population 1618000;
     :longitude 36.2333;
     :latitude 50  . 
 <http://abc/mondial/10/countries/UA/provinces/Khersonska/cities/Kherson> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Khersonska> ;
   :name 'Kherson';
     :population 361000  . 
 <http://abc/mondial/10/countries/UA/provinces/Khmelnytska/cities/Khmelnytskyy> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Khmelnytska> ;
   :name 'Khmelnytskyy';
     :population 241000  . 
 <http://abc/mondial/10/countries/UA/provinces/Kyyivska/cities/Kiev> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Kyyivska> ;
   :name 'Kiev';
     :population 2616000;
     :longitude 30.5;
     :latitude 50.45  . 
 <http://abc/mondial/10/countries/UA/provinces/Kirovohradska/cities/Kirovohrad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Kirovohradska> ;
   :name 'Kirovohrad';
     :population 274000  . 
 <http://abc/mondial/10/countries/UA/provinces/Luhanska/cities/Luhansk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Luhanska> ;
   :name 'Luhansk';
     :population 501000  . 
 <http://abc/mondial/10/countries/UA/provinces/Lvivska/cities/Lviv> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Lvivska> ;
   :name 'Lviv';
     :population 798000  . 
 <http://abc/mondial/10/countries/UA/provinces/Mykolayivska/cities/Mykolayiv> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Mykolayivska> ;
   :name 'Mykolayiv';
     :population 508000  . 
 <http://abc/mondial/10/countries/UA/provinces/Odeska/cities/Odesa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Odeska> ;
   :name 'Odesa';
     :population 1106000;
     :longitude 30.7333;
     :latitude 46.4833  . 
 <http://abc/mondial/10/countries/UA/provinces/Poltavska/cities/Poltava> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Poltavska> ;
   :name 'Poltava';
     :population 317000  . 
 <http://abc/mondial/10/countries/UA/provinces/Poltavska/cities/Kremenchuk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Poltavska> ;
   :name 'Kremenchuk';
     :population 238000  . 
 <http://abc/mondial/10/countries/UA/provinces/Rivnenska/cities/Rivne> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Rivnenska> ;
   :name 'Rivne';
     :population 233000  . 
 <http://abc/mondial/10/countries/UA/provinces/Sumska/cities/Sumy> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Sumska> ;
   :name 'Sumy';
     :population 296000  . 
 <http://abc/mondial/10/countries/UA/provinces/Ternopilska/cities/Ternopil> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Ternopilska> ;
   :name 'Ternopil';
     :population 212000  . 
 <http://abc/mondial/10/countries/UA/provinces/Vinnytska/cities/Vinnytsya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Vinnytska> ;
   :name 'Vinnytsya';
     :population 379000  . 
 <http://abc/mondial/10/countries/UA/provinces/Volynska/cities/Lutsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Volynska> ;
   :name 'Lutsk';
     :population 204000  . 
 <http://abc/mondial/10/countries/UA/provinces/Zakarpatska/cities/Uzhhorod> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Zakarpatska> ;
   :name 'Uzhhorod'  . 
 <http://abc/mondial/10/countries/UA/provinces/Zaporizka/cities/Zaporizhzhya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Zaporizka> ;
   :name 'Zaporizhzhya';
     :population 891000  . 
 <http://abc/mondial/10/countries/UA/provinces/Zhytomyrska/cities/Zhytomyr> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Zhytomyrska> ;
   :name 'Zhytomyr';
     :population 296000  . 
 <http://abc/mondial/10/countries/UA/provinces/Krym/cities/Simferopol> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Krym> ;
   :name 'Simferopol';
     :population 349000  . 
 <http://abc/mondial/10/countries/UA/provinces/Krym/cities/Sevastopol> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/UA/provinces/Krym> ;
   :name 'Sevastopol';
     :population 361000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia/cities/Petrozavodsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia> ;
   :name 'Petrozavodsk';
     :population 280000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi/cities/Syktyvkar> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi> ;
   :name 'Syktyvkar';
     :population 229000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi/cities/Ukhta> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi> ;
   :name 'Ukhta';
     :population 106000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi/cities/Vorkuta> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi> ;
   :name 'Vorkuta';
     :population 104000  . 
 <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast/cities/Arkhangelsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast> ;
   :name 'Arkhangelsk';
     :population 374000;
     :longitude 40.5333;
     :latitude 64.55  . 
 <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast/cities/Severodvinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast> ;
   :name 'Severodvinsk';
     :population 241000  . 
 <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast/cities/Vologda> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast> ;
   :name 'Vologda';
     :population 299000  . 
 <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast/cities/Cherepovets> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast> ;
   :name 'Cherepovets';
     :population 320000  . 
 <http://abc/mondial/10/countries/R/provinces/Murmanskayaoblast/cities/Murmansk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Murmanskayaoblast> ;
   :name 'Murmansk';
     :population 407000  . 
 <http://abc/mondial/10/countries/R/provinces/Kaliningradskayaoblast/cities/Kaliningrad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kaliningradskayaoblast> ;
   :name 'Kaliningrad';
     :population 419000;
     :longitude 20.5;
     :latitude 54.7167  . 
 <http://abc/mondial/10/countries/R/provinces/SanktPeterburg/cities/SanktPeterburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/SanktPeterburg> ;
   :name 'Sankt Peterburg';
     :population 4838000  . 
 <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast/cities/Kolpino> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast> ;
   :name 'Kolpino';
     :population 143000  . 
 <http://abc/mondial/10/countries/R/provinces/Novgorodskayaoblast/cities/Novgorod> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Novgorodskayaoblast> ;
   :name 'Novgorod';
     :population 233000  . 
 <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast/cities/Pskov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast> ;
   :name 'Pskov';
     :population 207000  . 
 <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast/cities/VelikiyeLuki> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast> ;
   :name 'Velikiye Luki';
     :population 116000  . 
 <http://abc/mondial/10/countries/R/provinces/Bryanskayaoblast/cities/Bryansk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Bryanskayaoblast> ;
   :name 'Bryansk';
     :population 462000  . 
 <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast/cities/Vladimir> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast> ;
   :name 'Vladimir';
     :population 339000  . 
 <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast/cities/Kovrov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast> ;
   :name 'Kovrov';
     :population 162000  . 
 <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast/cities/Murom> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast> ;
   :name 'Murom';
     :population 126000  . 
 <http://abc/mondial/10/countries/R/provinces/Ivanovskayaoblast/cities/Ivanovo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Ivanovskayaoblast> ;
   :name 'Ivanovo';
     :population 474000  . 
 <http://abc/mondial/10/countries/R/provinces/Ivanovskayaoblast/cities/Kineshma> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Ivanovskayaoblast> ;
   :name 'Kineshma';
     :population 103000  . 
 <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast/cities/Kaluga> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast> ;
   :name 'Kaluga';
     :population 347000  . 
 <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast/cities/Obninsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast> ;
   :name 'Obninsk';
     :population 108000  . 
 <http://abc/mondial/10/countries/R/provinces/Kostromskayaoblast/cities/Kostroma> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kostromskayaoblast> ;
   :name 'Kostroma';
     :population 285000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskva/cities/Moscow> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskva> ;
   :name 'Moscow';
     :population 8717000;
     :longitude 37.6667;
     :latitude 55.7667  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Podolsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Podolsk';
     :population 202000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Zelenograd> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Zelenograd';
     :population 191000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Lyubertsy> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Lyubertsy';
     :population 166000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Kolomna> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Kolomna';
     :population 154000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Mytishchi> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Mytishchi';
     :population 152000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Elektrostal> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Elektrostal';
     :population 150000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Serpukhov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Serpukhov';
     :population 139000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Balashikha> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Balashikha';
     :population 136000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Khimki> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Khimki';
     :population 134000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Odintsovo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Odintsovo';
     :population 129000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/OrekhovoZuyevo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Orekhovo Zuyevo';
     :population 126000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Noginsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Noginsk';
     :population 119000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Shchyolkovo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Shchyolkovo';
     :population 108000  . 
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Zagorsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> ;
   :name 'Zagorsk';
     :population 114000  . 
 <http://abc/mondial/10/countries/R/provinces/Orjolskayaoblast/cities/Orel> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Orjolskayaoblast> ;
   :name 'Orel';
     :population 348000  . 
 <http://abc/mondial/10/countries/R/provinces/Ryazanskayaoblast/cities/Ryazan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Ryazanskayaoblast> ;
   :name 'Ryazan';
     :population 536000  . 
 <http://abc/mondial/10/countries/R/provinces/Smolenskayaoblast/cities/Smolensk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Smolenskayaoblast> ;
   :name 'Smolensk';
     :population 355000  . 
 <http://abc/mondial/10/countries/R/provinces/Tverskayaoblast/cities/Tver> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tverskayaoblast> ;
   :name 'Tver';
     :population 455000  . 
 <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast/cities/Tula> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast> ;
   :name 'Tula';
     :population 532000  . 
 <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast/cities/Novomoskovsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast> ;
   :name 'Novomoskovsk';
     :population 144000  . 
 <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast/cities/Yaroslavl> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast> ;
   :name 'Yaroslavl';
     :population 629000  . 
 <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast/cities/Rybinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast> ;
   :name 'Rybinsk';
     :population 248000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofMariyEl/cities/YoshkarOla> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofMariyEl> ;
   :name 'Yoshkar Ola';
     :population 251000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofMordovia/cities/Saransk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofMordovia> ;
   :name 'Saransk';
     :population 320000  . 
 <http://abc/mondial/10/countries/R/provinces/ChuvashRepublic/cities/Cheboksary> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/ChuvashRepublic> ;
   :name 'Cheboksary';
     :population 450000  . 
 <http://abc/mondial/10/countries/R/provinces/ChuvashRepublic/cities/Novocheboksarsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/ChuvashRepublic> ;
   :name 'Novocheboksarsk';
     :population 123000  . 
 <http://abc/mondial/10/countries/R/provinces/Kirovskayaoblast/cities/Kirov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kirovskayaoblast> ;
   :name 'Kirov';
     :population 464000  . 
 <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast/cities/NizhniyNovgorod> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast> ;
   :name 'Nizhniy Novgorod';
     :population 1383000;
     :longitude 44;
     :latitude 56.3  . 
 <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast/cities/Dzerzhinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast> ;
   :name 'Dzerzhinsk';
     :population 285000  . 
 <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast/cities/Arzamas> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast> ;
   :name 'Arzamas';
     :population 112000  . 
 <http://abc/mondial/10/countries/R/provinces/Belgorodskayaoblast/cities/Belgorod> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Belgorodskayaoblast> ;
   :name 'Belgorod';
     :population 322000  . 
 <http://abc/mondial/10/countries/R/provinces/Belgorodskayaoblast/cities/StaryOskol> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Belgorodskayaoblast> ;
   :name 'Stary Oskol';
     :population 198000  . 
 <http://abc/mondial/10/countries/R/provinces/Voronezhskayaoblast/cities/Voronezh> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Voronezhskayaoblast> ;
   :name 'Voronezh';
     :population 908000  . 
 <http://abc/mondial/10/countries/R/provinces/Kurskayaoblast/cities/Kursk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kurskayaoblast> ;
   :name 'Kursk';
     :population 442000  . 
 <http://abc/mondial/10/countries/R/provinces/Lipetskayaoblast/cities/Lipetsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Lipetskayaoblast> ;
   :name 'Lipetsk';
     :population 474000  . 
 <http://abc/mondial/10/countries/R/provinces/Lipetskayaoblast/cities/Yelets> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Lipetskayaoblast> ;
   :name 'Yelets';
     :population 119000  . 
 <http://abc/mondial/10/countries/R/provinces/Tambovskayaoblast/cities/Tambov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tambovskayaoblast> ;
   :name 'Tambov';
     :population 316000  . 
 <http://abc/mondial/10/countries/R/provinces/Tambovskayaoblast/cities/Michurinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tambovskayaoblast> ;
   :name 'Michurinsk';
     :population 108000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofKalmykiya/cities/Elista> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofKalmykiya> ;
   :name 'Elista'  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan/cities/Kazan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan> ;
   :name 'Kazan';
     :population 1085000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan/cities/NaberezhnyeChelny> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan> ;
   :name 'Naberezhnye Chelny';
     :population 526000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan/cities/Nizhnekamsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan> ;
   :name 'Nizhnekamsk';
     :population 210000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan/cities/Almetyevsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan> ;
   :name 'Almetyevsk';
     :population 138000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan/cities/Zelenodolysk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan> ;
   :name 'Zelenodolysk';
     :population 101000  . 
 <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast/cities/Astrakhan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast> ;
   :name 'Astrakhan';
     :population 486000  . 
 <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast/cities/Volgograd> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast> ;
   :name 'Volgograd';
     :population 1003000;
     :longitude 44.5167;
     :latitude 48.7  . 
 <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast/cities/Volzhsky> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast> ;
   :name 'Volzhsky';
     :population 288000  . 
 <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast/cities/Kamyshin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast> ;
   :name 'Kamyshin';
     :population 128000  . 
 <http://abc/mondial/10/countries/R/provinces/Penzenskayaoblast/cities/Penza> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Penzenskayaoblast> ;
   :name 'Penza';
     :population 534000  . 
 <http://abc/mondial/10/countries/R/provinces/Penzenskayaoblast/cities/Kuznetsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Penzenskayaoblast> ;
   :name 'Kuznetsk';
     :population 100000  . 
 <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast/cities/Samara> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast> ;
   :name 'Samara';
     :population 1184000  . 
 <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast/cities/Tolyatti> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast> ;
   :name 'Tolyatti';
     :population 702000  . 
 <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast/cities/Syzran> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast> ;
   :name 'Syzran';
     :population 177000  . 
 <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast/cities/Novokuybyshevsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast> ;
   :name 'Novokuybyshevsk';
     :population 115000  . 
 <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast/cities/Saratov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast> ;
   :name 'Saratov';
     :population 895000  . 
 <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast/cities/Balakovo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast> ;
   :name 'Balakovo';
     :population 206000  . 
 <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast/cities/Engels> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast> ;
   :name 'Engels';
     :population 186000  . 
 <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast/cities/Simbirsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast> ;
   :name 'Simbirsk';
     :population 678000  . 
 <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast/cities/Dimitrovgrad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast> ;
   :name 'Dimitrovgrad';
     :population 135000  . 
 <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast/cities/RostovnaDonu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> ;
   :name 'Rostov na Donu';
     :population 1026000  . 
 <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast/cities/Taganrog> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> ;
   :name 'Taganrog';
     :population 292000  . 
 <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast/cities/Shakhty> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> ;
   :name 'Shakhty';
     :population 230000  . 
 <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast/cities/Novocherkassk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> ;
   :name 'Novocherkassk';
     :population 190000  . 
 <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast/cities/Volgodonsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> ;
   :name 'Volgodonsk';
     :population 183000  . 
 <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast/cities/Novoshakhtinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> ;
   :name 'Novoshakhtinsk';
     :population 107000  . 
 <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast/cities/RostovnoDonu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> ;
   :name 'Rostov no Donu'  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan/cities/Ufa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan> ;
   :name 'Ufa';
     :population 1094000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan/cities/Sterlitamak> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan> ;
   :name 'Sterlitamak';
     :population 259000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan/cities/Salavat> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan> ;
   :name 'Salavat';
     :population 156000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan/cities/Oktyabrsky> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan> ;
   :name 'Oktyabrsky';
     :population 110000  . 
 <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic/cities/Izhevsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic> ;
   :name 'Izhevsk';
     :population 654000  . 
 <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic/cities/Sarapul> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic> ;
   :name 'Sarapul';
     :population 109000  . 
 <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic/cities/Glazov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic> ;
   :name 'Glazov';
     :population 107000  . 
 <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic/cities/Votkinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/UdmurtRepublic> ;
   :name 'Votkinsk';
     :population 104000  . 
 <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast/cities/Orenburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast> ;
   :name 'Orenburg';
     :population 532000  . 
 <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast/cities/Orsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast> ;
   :name 'Orsk';
     :population 275000  . 
 <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast/cities/Novotroitsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast> ;
   :name 'Novotroitsk';
     :population 110000  . 
 <http://abc/mondial/10/countries/R/provinces/Permskayaoblast/cities/Perm> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Permskayaoblast> ;
   :name 'Perm';
     :population 1032000  . 
 <http://abc/mondial/10/countries/R/provinces/Permskayaoblast/cities/Berezniki> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Permskayaoblast> ;
   :name 'Berezniki';
     :population 184000  . 
 <http://abc/mondial/10/countries/R/provinces/Permskayaoblast/cities/Solikamsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Permskayaoblast> ;
   :name 'Solikamsk';
     :population 108000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofAdygeya/cities/Maykop> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofAdygeya> ;
   :name 'Maykop';
     :population 165000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofDagestan/cities/Makhachkala> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofDagestan> ;
   :name 'Makhachkala';
     :population 339000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofIngushetiya/cities/Nazran> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofIngushetiya> ;
   :name 'Nazran'  . 
 <http://abc/mondial/10/countries/R/provinces/KabardinoBalkarRep./cities/Nalchik> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/KabardinoBalkarRep.> ;
   :name 'Nalchik';
     :population 239000  . 
 <http://abc/mondial/10/countries/R/provinces/KarachayevoCherkesskRep./cities/Cherkessk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/KarachayevoCherkesskRep.> ;
   :name 'Cherkessk';
     :population 119000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofNorthOssetiya/cities/Vladikavkaz> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofNorthOssetiya> ;
   :name 'Vladikavkaz';
     :population 312000  . 
 <http://abc/mondial/10/countries/R/provinces/ChechenRep./cities/Grozny> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/ChechenRep.> ;
   :name 'Grozny';
     :population 364000  . 
 <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray/cities/Krasnodar> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray> ;
   :name 'Krasnodar';
     :population 646000  . 
 <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray/cities/Sochi> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray> ;
   :name 'Sochi';
     :population 355000  . 
 <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray/cities/Novorossiysk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray> ;
   :name 'Novorossiysk';
     :population 202000  . 
 <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray/cities/Armavir> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray> ;
   :name 'Armavir';
     :population 164000  . 
 <http://abc/mondial/10/countries/R/provinces/Stavropolskykray/cities/Stavropol> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Stavropolskykray> ;
   :name 'Stavropol';
     :population 342000  . 
 <http://abc/mondial/10/countries/R/provinces/Stavropolskykray/cities/Pyatigorsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Stavropolskykray> ;
   :name 'Pyatigorsk';
     :population 133000  . 
 <http://abc/mondial/10/countries/R/provinces/Stavropolskykray/cities/Nevinnomyssk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Stavropolskykray> ;
   :name 'Nevinnomyssk';
     :population 131000  . 
 <http://abc/mondial/10/countries/R/provinces/Stavropolskykray/cities/Kislovodsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Stavropolskykray> ;
   :name 'Kislovodsk';
     :population 120000  . 
 <http://abc/mondial/10/countries/R/provinces/Stavropolskykray/cities/Neftekamsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Stavropolskykray> ;
   :name 'Neftekamsk';
     :population 117000  . 
 <http://abc/mondial/10/countries/R/provinces/Kurganskayaoblast/cities/Kurgan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kurganskayaoblast> ;
   :name 'Kurgan';
     :population 363000  . 
 <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast/cities/Yekaterinburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast> ;
   :name 'Yekaterinburg';
     :population 1280000  . 
 <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast/cities/NizhniyTagil> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast> ;
   :name 'Nizhniy Tagil';
     :population 409000  . 
 <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast/cities/KamenskUralskiy> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast> ;
   :name 'Kamensk Uralskiy';
     :population 197000  . 
 <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast/cities/Pervouralsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast> ;
   :name 'Pervouralsk';
     :population 137000  . 
 <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast/cities/Serov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Sverdlovskayaoblast> ;
   :name 'Serov';
     :population 100000  . 
 <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast/cities/Chelyabinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast> ;
   :name 'Chelyabinsk';
     :population 1086000  . 
 <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast/cities/Magnitogorsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast> ;
   :name 'Magnitogorsk';
     :population 427000  . 
 <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast/cities/Zlatoust> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast> ;
   :name 'Zlatoust';
     :population 203000  . 
 <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast/cities/Miass> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast> ;
   :name 'Miass';
     :population 167000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofAltay/cities/GornoAltaysk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofAltay> ;
   :name 'Gorno Altaysk'  . 
 <http://abc/mondial/10/countries/R/provinces/Altayskiykray/cities/Barnaul> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Altayskiykray> ;
   :name 'Barnaul';
     :population 596000  . 
 <http://abc/mondial/10/countries/R/provinces/Altayskiykray/cities/Biysk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Altayskiykray> ;
   :name 'Biysk';
     :population 228000  . 
 <http://abc/mondial/10/countries/R/provinces/Altayskiykray/cities/Rubtsovsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Altayskiykray> ;
   :name 'Rubtsovsk';
     :population 170000  . 
 <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast/cities/Kemerovo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast> ;
   :name 'Kemerovo';
     :population 503000  . 
 <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast/cities/Novokuznetsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast> ;
   :name 'Novokuznetsk';
     :population 572000  . 
 <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast/cities/Prokopyevsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast> ;
   :name 'Prokopyevsk';
     :population 253000  . 
 <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast/cities/LeninskKuznetskiy> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast> ;
   :name 'Leninsk Kuznetskiy';
     :population 121000  . 
 <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast/cities/Kiselyovsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast> ;
   :name 'Kiselyovsk';
     :population 116000  . 
 <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast/cities/Mezhdurechensk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast> ;
   :name 'Mezhdurechensk';
     :population 105000  . 
 <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast/cities/AnzheroSudzhensk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kemerovskayaoblast> ;
   :name 'Anzhero Sudzhensk';
     :population 101000  . 
 <http://abc/mondial/10/countries/R/provinces/Novosibirskayaoblast/cities/Novosibirsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Novosibirskayaoblast> ;
   :name 'Novosibirsk';
     :population 1369000  . 
 <http://abc/mondial/10/countries/R/provinces/Omskayaoblast/cities/Omsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Omskayaoblast> ;
   :name 'Omsk';
     :population 1163000  . 
 <http://abc/mondial/10/countries/R/provinces/Tomskayaoblast/cities/Tomsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tomskayaoblast> ;
   :name 'Tomsk';
     :population 470000  . 
 <http://abc/mondial/10/countries/R/provinces/Tomskayaoblast/cities/Seversk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tomskayaoblast> ;
   :name 'Seversk';
     :population 110000  . 
 <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast/cities/Tyumen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> ;
   :name 'Tyumen';
     :population 494000  . 
 <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast/cities/Surgut> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> ;
   :name 'Surgut';
     :population 263000  . 
 <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast/cities/Nizhnevartovsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> ;
   :name 'Nizhnevartovsk';
     :population 238000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya/cities/UlanUde> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya> ;
   :name 'Ulan Ude';
     :population 366000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofTyva/cities/Kyzyl> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofTyva> ;
   :name 'Kyzyl'  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofKhakassiya/cities/Abakan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofKhakassiya> ;
   :name 'Abakan';
     :population 161000  . 
 <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray/cities/Krasnoyarsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> ;
   :name 'Krasnoyarsk';
     :population 869000;
     :longitude 92.95;
     :latitude 56.0167  . 
 <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray/cities/Norilsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> ;
   :name 'Norilsk';
     :population 159000  . 
 <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray/cities/Achinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> ;
   :name 'Achinsk';
     :population 123000  . 
 <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray/cities/Kansk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> ;
   :name 'Kansk';
     :population 109000  . 
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/Irkutsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> ;
   :name 'Irkutsk';
     :population 585000  . 
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/Angarsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> ;
   :name 'Angarsk';
     :population 267000  . 
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/Bratsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> ;
   :name 'Bratsk';
     :population 257000  . 
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/UstIlimsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> ;
   :name 'Ust Ilimsk';
     :population 110000  . 
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/UsolyeSibirskoye> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> ;
   :name 'Usolye Sibirskoye';
     :population 106000  . 
 <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast/cities/Chita> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast> ;
   :name 'Chita';
     :population 322000  . 
 <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha/cities/Yakutsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha> ;
   :name 'Yakutsk';
     :population 192000  . 
 <http://abc/mondial/10/countries/R/provinces/Yevreyskayaavt.oblast/cities/Birobidzhan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Yevreyskayaavt.oblast> ;
   :name 'Birobidzhan'  . 
 <http://abc/mondial/10/countries/R/provinces/Chukotskyao/cities/Anadyr> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Chukotskyao> ;
   :name 'Anadyr'  . 
 <http://abc/mondial/10/countries/R/provinces/Primorskykray/cities/Vladivostok> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Primorskykray> ;
   :name 'Vladivostok';
     :population 632000;
     :longitude 131.917;
     :latitude 43.1167  . 
 <http://abc/mondial/10/countries/R/provinces/Primorskykray/cities/Nakhodka> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Primorskykray> ;
   :name 'Nakhodka';
     :population 163000  . 
 <http://abc/mondial/10/countries/R/provinces/Primorskykray/cities/Ussuriysk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Primorskykray> ;
   :name 'Ussuriysk';
     :population 162000  . 
 <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray/cities/Khabarovsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray> ;
   :name 'Khabarovsk';
     :population 618000  . 
 <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray/cities/KomsomolsknaAmure> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray> ;
   :name 'Komsomolsk na Amure';
     :population 309000  . 
 <http://abc/mondial/10/countries/R/provinces/Amurskayaoblast/cities/Blagoveshchensk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Amurskayaoblast> ;
   :name 'Blagoveshchensk';
     :population 214000  . 
 <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast/cities/PetropavlovskKamchatsky> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast> ;
   :name 'Petropavlovsk Kamchatsky';
     :population 210000  . 
 <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast/cities/Magadan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> ;
   :name 'Magadan';
     :population 128000  . 
 <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast/cities/Okhotsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> ;
   :name 'Okhotsk';
     :population 4900  . 
 <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast/cities/YuzhnoSakhalinsk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast> ;
   :name 'Yuzhno Sakhalinsk';
     :population 160000  . 
 <http://abc/mondial/10/countries/B/provinces/Antwerp/cities/Antwerp> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/Antwerp> ;
   :name 'Antwerp';
     :population 459072;
     :longitude 4.23;
     :latitude 51.1  . 
 <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/Brabant> ;
   :name 'Brussels';
     :population 951580;
     :longitude 4.35;
     :latitude 50.85  . 
 <http://abc/mondial/10/countries/B/provinces/EastFlanders/cities/Ghent> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/EastFlanders> ;
   :name 'Ghent';
     :population 227483;
     :longitude 3.75;
     :latitude 51.054  . 
 <http://abc/mondial/10/countries/B/provinces/Hainaut/cities/Charleroi> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/Hainaut> ;
   :name 'Charleroi';
     :population 206491  . 
 <http://abc/mondial/10/countries/B/provinces/Hainaut/cities/Mons> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/Hainaut> ;
   :name 'Mons';
     :population 90720;
     :longitude 4.5;
     :latitude 50.4  . 
 <http://abc/mondial/10/countries/B/provinces/Liege/cities/Liege> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/Liege> ;
   :name 'Liege';
     :population 192393;
     :longitude 5.6;
     :latitude 50.5  . 
 <http://abc/mondial/10/countries/B/provinces/Limburg/cities/Hasselt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/Limburg> ;
   :name 'Hasselt';
     :population 65348;
     :longitude 5.2;
     :latitude 50.9  . 
 <http://abc/mondial/10/countries/B/provinces/Luxembourg/cities/Arlon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/Luxembourg> ;
   :name 'Arlon';
     :population 23150;
     :longitude 5.8;
     :latitude 49.7  . 
 <http://abc/mondial/10/countries/B/provinces/Namur/cities/Namur> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/Namur> ;
   :name 'Namur';
     :population 105014;
     :longitude 4.9;
     :latitude 50.4  . 
 <http://abc/mondial/10/countries/B/provinces/WestFlanders/cities/Brugge> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/B/provinces/WestFlanders> ;
   :name 'Brugge';
     :population 117799;
     :longitude 3.2;
     :latitude 51.1  . 
 <http://abc/mondial/10/countries/L/cities/Luxembourg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/L> ;
   :name 'Luxembourg';
     :population 76600;
     :longitude 6.08;
     :latitude 49.4  . 
 <http://abc/mondial/10/countries/NL/provinces/Groningen/cities/Groningen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Groningen> ;
   :name 'Groningen';
     :population 210708  . 
 <http://abc/mondial/10/countries/NL/provinces/Friesland/cities/Leeuwarden> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Friesland> ;
   :name 'Leeuwarden'  . 
 <http://abc/mondial/10/countries/NL/provinces/Drenthe/cities/Assen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Drenthe> ;
   :name 'Assen'  . 
 <http://abc/mondial/10/countries/NL/provinces/Overijssel/cities/Enschede> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Overijssel> ;
   :name 'Enschede';
     :population 254480  . 
 <http://abc/mondial/10/countries/NL/provinces/Overijssel/cities/Zwolle> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Overijssel> ;
   :name 'Zwolle'  . 
 <http://abc/mondial/10/countries/NL/provinces/Flevoland/cities/Lelystad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Flevoland> ;
   :name 'Lelystad'  . 
 <http://abc/mondial/10/countries/NL/provinces/Gelderland/cities/Arnhem> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Gelderland> ;
   :name 'Arnhem';
     :population 314159  . 
 <http://abc/mondial/10/countries/NL/provinces/Gelderland/cities/Nijmegen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Gelderland> ;
   :name 'Nijmegen';
     :population 249490  . 
 <http://abc/mondial/10/countries/NL/provinces/Utrecht/cities/Utrecht> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Utrecht> ;
   :name 'Utrecht';
     :population 547070  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordHolland/cities/Amsterdam> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordHolland> ;
   :name 'Amsterdam';
     :population 1101407;
     :longitude 4.91667;
     :latitude 52.3833  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordHolland/cities/Haarlem> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordHolland> ;
   :name 'Haarlem';
     :population 212631  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordHolland/cities/Zaanstreek> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordHolland> ;
   :name 'Zaanstreek';
     :population 147917  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordHolland/cities/Velsen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordHolland> ;
   :name 'Velsen';
     :population 134973  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordHolland/cities/Hilversum> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordHolland> ;
   :name 'Hilversum';
     :population 102023  . 
 <http://abc/mondial/10/countries/NL/provinces/ZuidHolland/cities/sGravenhage> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/ZuidHolland> ;
   :name 's Gravenhage';
     :population 694249  . 
 <http://abc/mondial/10/countries/NL/provinces/ZuidHolland/cities/Rotterdam> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/ZuidHolland> ;
   :name 'Rotterdam';
     :population 1078747  . 
 <http://abc/mondial/10/countries/NL/provinces/ZuidHolland/cities/Dordrecht> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/ZuidHolland> ;
   :name 'Dordrecht';
     :population 213963  . 
 <http://abc/mondial/10/countries/NL/provinces/ZuidHolland/cities/Leiden> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/ZuidHolland> ;
   :name 'Leiden';
     :population 194935  . 
 <http://abc/mondial/10/countries/NL/provinces/Zeeland/cities/Middelburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Zeeland> ;
   :name 'Middelburg'  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordBrabant/cities/sHertogenbosch> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordBrabant> ;
   :name 's Hertogenbosch';
     :population 199127  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordBrabant/cities/Eindhoven> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordBrabant> ;
   :name 'Eindhoven';
     :population 395612  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordBrabant/cities/Tilburg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordBrabant> ;
   :name 'Tilburg';
     :population 237958  . 
 <http://abc/mondial/10/countries/NL/provinces/NoordBrabant/cities/Breda> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/NoordBrabant> ;
   :name 'Breda';
     :population 166616  . 
 <http://abc/mondial/10/countries/NL/provinces/Limburg/cities/Maastricht> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Limburg> ;
   :name 'Maastricht';
     :population 164701  . 
 <http://abc/mondial/10/countries/NL/provinces/Limburg/cities/Heerlen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Limburg> ;
   :name 'Heerlen';
     :population 270952  . 
 <http://abc/mondial/10/countries/NL/provinces/Limburg/cities/Geleen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/NL/provinces/Limburg> ;
   :name 'Geleen';
     :population 186011  . 
 <http://abc/mondial/10/countries/BIH/cities/Sarajevo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/BIH> ;
   :name 'Sarajevo';
     :longitude 18.4;
     :latitude 43.9  . 
 <http://abc/mondial/10/countries/HR/cities/Zagreb> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/HR> ;
   :name 'Zagreb';
     :longitude 16;
     :latitude 45.8  . 
 <http://abc/mondial/10/countries/BG/cities/Sofia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/BG> ;
   :name 'Sofia';
     :population 1300000;
     :longitude 23.3333;
     :latitude 42.7  . 
 <http://abc/mondial/10/countries/RO/provinces/Alba/cities/AlbaIulia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Alba> ;
   :name 'Alba Iulia'  . 
 <http://abc/mondial/10/countries/RO/provinces/Arad/cities/Arad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Arad> ;
   :name 'Arad';
     :population 191000  . 
 <http://abc/mondial/10/countries/RO/provinces/Arges/cities/Pitesti> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Arges> ;
   :name 'Pitesti';
     :population 162000  . 
 <http://abc/mondial/10/countries/RO/provinces/Bacau/cities/Bacau> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Bacau> ;
   :name 'Bacau';
     :population 193000  . 
 <http://abc/mondial/10/countries/RO/provinces/Bihor/cities/Oradea> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Bihor> ;
   :name 'Oradea';
     :population 225000  . 
 <http://abc/mondial/10/countries/RO/provinces/BistritaNasaud/cities/Bistrita> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/BistritaNasaud> ;
   :name 'Bistrita'  . 
 <http://abc/mondial/10/countries/RO/provinces/Botosani/cities/Botosani> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Botosani> ;
   :name 'Botosani'  . 
 <http://abc/mondial/10/countries/RO/provinces/Braila/cities/Braila> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Braila> ;
   :name 'Braila';
     :population 243000  . 
 <http://abc/mondial/10/countries/RO/provinces/Brasov/cities/Brasov> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Brasov> ;
   :name 'Brasov';
     :population 353000  . 
 <http://abc/mondial/10/countries/RO/provinces/Bucuresti/cities/Bucharest> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Bucuresti> ;
   :name 'Bucharest';
     :population 2037000;
     :longitude 26.1;
     :latitude 44.4167  . 
 <http://abc/mondial/10/countries/RO/provinces/Buzau/cities/Buzau> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Buzau> ;
   :name 'Buzau';
     :population 145000  . 
 <http://abc/mondial/10/countries/RO/provinces/Calarasi/cities/Calarasi> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Calarasi> ;
   :name 'Calarasi'  . 
 <http://abc/mondial/10/countries/RO/provinces/CarasSeverin/cities/Resita> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/CarasSeverin> ;
   :name 'Resita'  . 
 <http://abc/mondial/10/countries/RO/provinces/Cluj/cities/ClujNapoca> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Cluj> ;
   :name 'Cluj Napoca';
     :population 318000  . 
 <http://abc/mondial/10/countries/RO/provinces/Constanta/cities/Constanta> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Constanta> ;
   :name 'Constanta';
     :population 316000  . 
 <http://abc/mondial/10/countries/RO/provinces/Covasna/cities/SfintuGheorghe> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Covasna> ;
   :name 'Sfintu Gheorghe'  . 
 <http://abc/mondial/10/countries/RO/provinces/Dimbovita/cities/Tirgoviste> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Dimbovita> ;
   :name 'Tirgoviste'  . 
 <http://abc/mondial/10/countries/RO/provinces/Dolj/cities/Craiova> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Dolj> ;
   :name 'Craiova';
     :population 300000  . 
 <http://abc/mondial/10/countries/RO/provinces/Galati/cities/Galati> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Galati> ;
   :name 'Galati';
     :population 307000  . 
 <http://abc/mondial/10/countries/RO/provinces/Giurgiu/cities/Giurgiu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Giurgiu> ;
   :name 'Giurgiu'  . 
 <http://abc/mondial/10/countries/RO/provinces/Gorj/cities/TirguJiu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Gorj> ;
   :name 'Tirgu Jiu'  . 
 <http://abc/mondial/10/countries/RO/provinces/Harghita/cities/MiercureaCiuc> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Harghita> ;
   :name 'Miercurea Ciuc'  . 
 <http://abc/mondial/10/countries/RO/provinces/Hunedoara/cities/Deva> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Hunedoara> ;
   :name 'Deva'  . 
 <http://abc/mondial/10/countries/RO/provinces/Ialomita/cities/Slobozia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Ialomita> ;
   :name 'Slobozia'  . 
 <http://abc/mondial/10/countries/RO/provinces/Iasi/cities/Iasi> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Iasi> ;
   :name 'Iasi';
     :population 330000  . 
 <http://abc/mondial/10/countries/RO/provinces/Maramures/cities/BaiaMare> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Maramures> ;
   :name 'Baia Mare';
     :population 150000  . 
 <http://abc/mondial/10/countries/RO/provinces/Mehedinti/cities/DrobetaTurnuSeverin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Mehedinti> ;
   :name 'Drobeta Turnu Severin'  . 
 <http://abc/mondial/10/countries/RO/provinces/Mures/cities/TirguMures> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Mures> ;
   :name 'Tirgu Mures';
     :population 165000  . 
 <http://abc/mondial/10/countries/RO/provinces/Neamt/cities/PiatraNeamt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Neamt> ;
   :name 'Piatra Neamt'  . 
 <http://abc/mondial/10/countries/RO/provinces/Olt/cities/Slatina> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Olt> ;
   :name 'Slatina'  . 
 <http://abc/mondial/10/countries/RO/provinces/Prahova/cities/Ploiesti> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Prahova> ;
   :name 'Ploiesti'  . 
 <http://abc/mondial/10/countries/RO/provinces/Salaj/cities/Zalau> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Salaj> ;
   :name 'Zalau'  . 
 <http://abc/mondial/10/countries/RO/provinces/SatuMare/cities/SatuMare> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/SatuMare> ;
   :name 'Satu Mare';
     :population 137000  . 
 <http://abc/mondial/10/countries/RO/provinces/Sibiu/cities/Sibiu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Sibiu> ;
   :name 'Sibiu';
     :population 184000  . 
 <http://abc/mondial/10/countries/RO/provinces/Suceava/cities/Suceava> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Suceava> ;
   :name 'Suceava'  . 
 <http://abc/mondial/10/countries/RO/provinces/Teleorman/cities/Alexandria> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Teleorman> ;
   :name 'Alexandria'  . 
 <http://abc/mondial/10/countries/RO/provinces/Timis/cities/Timisoara> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Timis> ;
   :name 'Timisoara';
     :population 333000  . 
 <http://abc/mondial/10/countries/RO/provinces/Tulcea/cities/Tulcea> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Tulcea> ;
   :name 'Tulcea'  . 
 <http://abc/mondial/10/countries/RO/provinces/Vaslui/cities/Vaslui> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Vaslui> ;
   :name 'Vaslui'  . 
 <http://abc/mondial/10/countries/RO/provinces/Vilcea/cities/RimnicuVilcea> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Vilcea> ;
   :name 'Rimnicu Vilcea'  . 
 <http://abc/mondial/10/countries/RO/provinces/Vrancea/cities/Focsani> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RO/provinces/Vrancea> ;
   :name 'Focsani'  . 
 <http://abc/mondial/10/countries/TR/provinces/Adana/cities/Adana> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Adana> ;
   :name 'Adana';
     :population 1047300;
     :longitude 35.3;
     :latitude 36.9833  . 
 <http://abc/mondial/10/countries/TR/provinces/Adana/cities/Osmaniye> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Adana> ;
   :name 'Osmaniye';
     :population 138000  . 
 <http://abc/mondial/10/countries/TR/provinces/Adiyaman/cities/Adiyaman> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Adiyaman> ;
   :name 'Adiyaman';
     :population 128000  . 
 <http://abc/mondial/10/countries/TR/provinces/Afyon/cities/Afyon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Afyon> ;
   :name 'Afyon'  . 
 <http://abc/mondial/10/countries/TR/provinces/Agri/cities/Agri> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Agri> ;
   :name 'Agri'  . 
 <http://abc/mondial/10/countries/TR/provinces/Aksaray/cities/Aksaray> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Aksaray> ;
   :name 'Aksaray'  . 
 <http://abc/mondial/10/countries/TR/provinces/Amasya/cities/Amasya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Amasya> ;
   :name 'Amasya'  . 
 <http://abc/mondial/10/countries/TR/provinces/Ankara/cities/Ankara> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Ankara> ;
   :name 'Ankara';
     :population 2782200;
     :longitude 32.8833;
     :latitude 39.95  . 
 <http://abc/mondial/10/countries/TR/provinces/Antalya/cities/Antalya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Antalya> ;
   :name 'Antalya';
     :population 497200  . 
 <http://abc/mondial/10/countries/TR/provinces/Artvin/cities/Artvin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Artvin> ;
   :name 'Artvin'  . 
 <http://abc/mondial/10/countries/TR/provinces/Aydin/cities/Aydin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Aydin> ;
   :name 'Aydin';
     :population 121200  . 
 <http://abc/mondial/10/countries/TR/provinces/Balikesir/cities/Balikesir> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Balikesir> ;
   :name 'Balikesir';
     :population 187600  . 
 <http://abc/mondial/10/countries/TR/provinces/Batman/cities/Batman> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Batman> ;
   :name 'Batman';
     :population 182800  . 
 <http://abc/mondial/10/countries/TR/provinces/Bayburt/cities/Bayburt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Bayburt> ;
   :name 'Bayburt'  . 
 <http://abc/mondial/10/countries/TR/provinces/Bilecik/cities/Bilecik> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Bilecik> ;
   :name 'Bilecik'  . 
 <http://abc/mondial/10/countries/TR/provinces/Bingol/cities/Bingol> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Bingol> ;
   :name 'Bingol'  . 
 <http://abc/mondial/10/countries/TR/provinces/Bitlis/cities/Bitlis> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Bitlis> ;
   :name 'Bitlis'  . 
 <http://abc/mondial/10/countries/TR/provinces/Bolu/cities/Bolu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Bolu> ;
   :name 'Bolu'  . 
 <http://abc/mondial/10/countries/TR/provinces/Burdur/cities/Burdur> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Burdur> ;
   :name 'Burdur'  . 
 <http://abc/mondial/10/countries/TR/provinces/Bursa/cities/Bursa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Bursa> ;
   :name 'Bursa';
     :population 996600  . 
 <http://abc/mondial/10/countries/TR/provinces/Canakkale/cities/Canakkale> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Canakkale> ;
   :name 'Canakkale'  . 
 <http://abc/mondial/10/countries/TR/provinces/Cankiri/cities/Cankiri> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Cankiri> ;
   :name 'Cankiri'  . 
 <http://abc/mondial/10/countries/TR/provinces/Corum/cities/Corum> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Corum> ;
   :name 'Corum'  . 
 <http://abc/mondial/10/countries/TR/provinces/Denizli/cities/Denizli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Denizli> ;
   :name 'Denizli';
     :population 234500  . 
 <http://abc/mondial/10/countries/TR/provinces/Diyarbakir/cities/Diyarbakir> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Diyarbakir> ;
   :name 'Diyarbakir';
     :population 448300  . 
 <http://abc/mondial/10/countries/TR/provinces/Edirne/cities/Edirne> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Edirne> ;
   :name 'Edirne';
     :population 115500  . 
 <http://abc/mondial/10/countries/TR/provinces/Elazig/cities/Elazig> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Elazig> ;
   :name 'Elazig';
     :population 222800  . 
 <http://abc/mondial/10/countries/TR/provinces/Erzincan/cities/Erzincan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Erzincan> ;
   :name 'Erzincan'  . 
 <http://abc/mondial/10/countries/TR/provinces/Erzurum/cities/Erzurum> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Erzurum> ;
   :name 'Erzurum';
     :population 250100;
     :longitude 41.3;
     :latitude 49.9  . 
 <http://abc/mondial/10/countries/TR/provinces/Eskisehir/cities/Eskisehir> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Eskisehir> ;
   :name 'Eskisehir';
     :population 451000  . 
 <http://abc/mondial/10/countries/TR/provinces/Gaziantep/cities/Gaziantep> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Gaziantep> ;
   :name 'Gaziantep';
     :population 716000  . 
 <http://abc/mondial/10/countries/TR/provinces/Giresun/cities/Giresun> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Giresun> ;
   :name 'Giresun'  . 
 <http://abc/mondial/10/countries/TR/provinces/Gumushane/cities/Gumushane> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Gumushane> ;
   :name 'Gumushane'  . 
 <http://abc/mondial/10/countries/TR/provinces/Hakkari/cities/Hakkari> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Hakkari> ;
   :name 'Hakkari'  . 
 <http://abc/mondial/10/countries/TR/provinces/Hatay/cities/Iskenderun> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Hatay> ;
   :name 'Iskenderun';
     :population 156800  . 
 <http://abc/mondial/10/countries/TR/provinces/Hatay/cities/Antakya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Hatay> ;
   :name 'Antakya';
     :population 137200  . 
 <http://abc/mondial/10/countries/TR/provinces/Icel/cities/Mersin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Icel> ;
   :name 'Mersin';
     :population 523000  . 
 <http://abc/mondial/10/countries/TR/provinces/Icel/cities/Tarsus> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Icel> ;
   :name 'Tarsus';
     :population 225000  . 
 <http://abc/mondial/10/countries/TR/provinces/Isparta/cities/Isparta> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Isparta> ;
   :name 'Isparta';
     :population 120900  . 
 <http://abc/mondial/10/countries/TR/provinces/Istanbul/cities/Istanbul> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Istanbul> ;
   :name 'Istanbul';
     :population 7615500;
     :longitude 28.8333;
     :latitude 40.9667  . 
 <http://abc/mondial/10/countries/TR/provinces/Izmir/cities/Izmir> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Izmir> ;
   :name 'Izmir';
     :population 1985300;
     :longitude 27.1667;
     :latitude 38.4333  . 
 <http://abc/mondial/10/countries/TR/provinces/Karaman/cities/Karaman> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Karaman> ;
   :name 'Karaman'  . 
 <http://abc/mondial/10/countries/TR/provinces/Karamanmaras/cities/KaramanMaras> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Karamanmaras> ;
   :name 'Karaman Maras';
     :population 242200  . 
 <http://abc/mondial/10/countries/TR/provinces/Kars/cities/Kars> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kars> ;
   :name 'Kars'  . 
 <http://abc/mondial/10/countries/TR/provinces/Kastamonu/cities/Kastamonu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kastamonu> ;
   :name 'Kastamonu'  . 
 <http://abc/mondial/10/countries/TR/provinces/Kayseri/cities/Kayseri> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kayseri> ;
   :name 'Kayseri';
     :population 454000  . 
 <http://abc/mondial/10/countries/TR/provinces/Kirikkale/cities/Kirikkale> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kirikkale> ;
   :name 'Kirikkale';
     :population 170300  . 
 <http://abc/mondial/10/countries/TR/provinces/Kirklareli/cities/Kirklareli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kirklareli> ;
   :name 'Kirklareli'  . 
 <http://abc/mondial/10/countries/TR/provinces/Kirsehir/cities/Kirsehir> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kirsehir> ;
   :name 'Kirsehir'  . 
 <http://abc/mondial/10/countries/TR/provinces/Kocaeli/cities/Izmit> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kocaeli> ;
   :name 'Izmit';
     :population 275800  . 
 <http://abc/mondial/10/countries/TR/provinces/Kocaeli/cities/Kocaeli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kocaeli> ;
   :name 'Kocaeli';
     :population 256882  . 
 <http://abc/mondial/10/countries/TR/provinces/Kocaeli/cities/Gebze> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kocaeli> ;
   :name 'Gebze';
     :population 237300  . 
 <http://abc/mondial/10/countries/TR/provinces/Kocaeli/cities/Adapazari> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kocaeli> ;
   :name 'Adapazari';
     :population 186000  . 
 <http://abc/mondial/10/countries/TR/provinces/Konya/cities/Konya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Konya> ;
   :name 'Konya';
     :population 576000  . 
 <http://abc/mondial/10/countries/TR/provinces/Kutahya/cities/Kutahya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Kutahya> ;
   :name 'Kutahya';
     :population 140700  . 
 <http://abc/mondial/10/countries/TR/provinces/Malatya/cities/Malatya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Malatya> ;
   :name 'Malatya';
     :population 319700  . 
 <http://abc/mondial/10/countries/TR/provinces/Manisa/cities/Manisa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Manisa> ;
   :name 'Manisa';
     :population 187500  . 
 <http://abc/mondial/10/countries/TR/provinces/Mardin/cities/Mardin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Mardin> ;
   :name 'Mardin'  . 
 <http://abc/mondial/10/countries/TR/provinces/Mugla/cities/Mugla> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Mugla> ;
   :name 'Mugla'  . 
 <http://abc/mondial/10/countries/TR/provinces/Mus/cities/Mus> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Mus> ;
   :name 'Mus'  . 
 <http://abc/mondial/10/countries/TR/provinces/Nevsehir/cities/Nevsehir> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Nevsehir> ;
   :name 'Nevsehir'  . 
 <http://abc/mondial/10/countries/TR/provinces/Nigde/cities/Nigde> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Nigde> ;
   :name 'Nigde'  . 
 <http://abc/mondial/10/countries/TR/provinces/Ordu/cities/Ordu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Ordu> ;
   :name 'Ordu';
     :population 121300  . 
 <http://abc/mondial/10/countries/TR/provinces/Rize/cities/Rize> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Rize> ;
   :name 'Rize'  . 
 <http://abc/mondial/10/countries/TR/provinces/Sakarya/cities/Sakarya> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Sakarya> ;
   :name 'Sakarya'  . 
 <http://abc/mondial/10/countries/TR/provinces/Samsun/cities/Samsun> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Samsun> ;
   :name 'Samsun';
     :population 326900  . 
 <http://abc/mondial/10/countries/TR/provinces/Sanliurfa/cities/Urfa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Sanliurfa> ;
   :name 'Urfa';
     :population 357900  . 
 <http://abc/mondial/10/countries/TR/provinces/Siirt/cities/Siirt> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Siirt> ;
   :name 'Siirt'  . 
 <http://abc/mondial/10/countries/TR/provinces/Sinop/cities/Sinop> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Sinop> ;
   :name 'Sinop'  . 
 <http://abc/mondial/10/countries/TR/provinces/Sirnak/cities/Sirnak> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Sirnak> ;
   :name 'Sirnak'  . 
 <http://abc/mondial/10/countries/TR/provinces/Sivas/cities/Sivas> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Sivas> ;
   :name 'Sivas';
     :population 240100  . 
 <http://abc/mondial/10/countries/TR/provinces/Tekirdag/cities/Tekirdag> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Tekirdag> ;
   :name 'Tekirdag'  . 
 <http://abc/mondial/10/countries/TR/provinces/Tokat/cities/Tokat> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Tokat> ;
   :name 'Tokat'  . 
 <http://abc/mondial/10/countries/TR/provinces/Trabzon/cities/Trabzon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Trabzon> ;
   :name 'Trabzon';
     :population 145400  . 
 <http://abc/mondial/10/countries/TR/provinces/Tunceli/cities/Tunceli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Tunceli> ;
   :name 'Tunceli'  . 
 <http://abc/mondial/10/countries/TR/provinces/Usak/cities/Usak> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Usak> ;
   :name 'Usak';
     :population 119900  . 
 <http://abc/mondial/10/countries/TR/provinces/Van/cities/Van> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Van> ;
   :name 'Van';
     :population 194600  . 
 <http://abc/mondial/10/countries/TR/provinces/Yozgat/cities/Yozgat> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Yozgat> ;
   :name 'Yozgat'  . 
 <http://abc/mondial/10/countries/TR/provinces/Zonguldak/cities/Zonguldak> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Zonguldak> ;
   :name 'Zonguldak';
     :population 115900  . 
 <http://abc/mondial/10/countries/TR/provinces/Zonguldak/cities/Karabuk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/TR/provinces/Zonguldak> ;
   :name 'Karabuk';
     :population 113900  . 
 <http://abc/mondial/10/countries/DK/cities/Copenhagen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/DK> ;
   :name 'Copenhagen';
     :population 1358540;
     :longitude 12.55;
     :latitude 55.6833  . 
 <http://abc/mondial/10/countries/DK/cities/Aarhus> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/DK> ;
   :name 'Aarhus';
     :population 194345;
     :longitude 10.1;
     :latitude 56.1  . 
 <http://abc/mondial/10/countries/DK/cities/Odense> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/DK> ;
   :name 'Odense';
     :population 136803;
     :longitude 10.2;
     :latitude 55.3  . 
 <http://abc/mondial/10/countries/DK/cities/Aalborg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/DK> ;
   :name 'Aalborg';
     :population 113865;
     :longitude 10;
     :latitude 57  . 
 <http://abc/mondial/10/countries/DK/cities/Esbjerg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/DK> ;
   :name 'Esbjerg';
     :population 70975;
     :longitude 8.3;
     :latitude 55.3  . 
 <http://abc/mondial/10/countries/DK/cities/Randers> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/DK> ;
   :name 'Randers';
     :population 55780;
     :longitude 10;
     :latitude 56.3  . 
 <http://abc/mondial/10/countries/EW/cities/Tallinn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/EW> ;
   :name 'Tallinn';
     :population 478000;
     :longitude 25;
     :latitude 59.3  . 
 <http://abc/mondial/10/countries/FARX/cities/Torshavn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/FARX> ;
   :name 'Torshavn';
     :longitude -7;
     :latitude 62  . 
 <http://abc/mondial/10/countries/SF/provinces/Aland/cities/Mariehamn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Aland> ;
   :name 'Mariehamn';
     :population 9500;
     :longitude 19.5;
     :latitude 60.1  . 
 <http://abc/mondial/10/countries/SF/provinces/Haeme/cities/Tampere> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Haeme> ;
   :name 'Tampere';
     :population 170097;
     :longitude 23.5;
     :latitude 61.3  . 
 <http://abc/mondial/10/countries/SF/provinces/Haeme/cities/Lahti> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Haeme> ;
   :name 'Lahti';
     :population 94234;
     :longitude 25.2;
     :latitude 60.5  . 
 <http://abc/mondial/10/countries/SF/provinces/Haeme/cities/Haemeenlinna> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Haeme> ;
   :name 'Haemeenlinna';
     :population 42000;
     :longitude 24.3;
     :latitude 61  . 
 <http://abc/mondial/10/countries/SF/provinces/Kuopio/cities/Kuopio> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Kuopio> ;
   :name 'Kuopio';
     :population 78571;
     :longitude 27.4;
     :latitude 62.5  . 
 <http://abc/mondial/10/countries/SF/provinces/Kymi/cities/Lappeenrenta> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Kymi> ;
   :name 'Lappeenrenta';
     :population 53922;
     :longitude 26.5;
     :latitude 60.5  . 
 <http://abc/mondial/10/countries/SF/provinces/Kymi/cities/Kotka> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Kymi> ;
   :name 'Kotka';
     :population 58345;
     :longitude 26.5;
     :latitude 60.3  . 
 <http://abc/mondial/10/countries/SF/provinces/Lappia/cities/Rovaniemi> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Lappia> ;
   :name 'Rovaniemi';
     :population 31000;
     :longitude 24.4;
     :latitude 66.3  . 
 <http://abc/mondial/10/countries/SF/provinces/Mikkeli/cities/Mikkeli> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Mikkeli> ;
   :name 'Mikkeli';
     :population 28000;
     :longitude 27.2;
     :latitude 61.4  . 
 <http://abc/mondial/10/countries/SF/provinces/Suomi/cities/Jyvaeskylae> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Suomi> ;
   :name 'Jyvaeskylae';
     :population 65511;
     :longitude 25.2;
     :latitude 62.1  . 
 <http://abc/mondial/10/countries/SF/provinces/Pohjols-Karjala/cities/Joensuu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Pohjols-Karjala> ;
   :name 'Joensuu';
     :population 44000;
     :longitude 29.5;
     :latitude 62.4  . 
 <http://abc/mondial/10/countries/SF/provinces/Oulu/cities/Oulu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Oulu> ;
   :name 'Oulu';
     :population 97898;
     :longitude 25.2;
     :latitude 65.3  . 
 <http://abc/mondial/10/countries/SF/provinces/Turku-Pori/cities/Pori> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Turku-Pori> ;
   :name 'Pori';
     :population 77763;
     :longitude 21.2;
     :latitude 61.3  . 
 <http://abc/mondial/10/countries/SF/provinces/Turku-Pori/cities/Turku> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Turku-Pori> ;
   :name 'Turku';
     :population 161292;
     :longitude 22.1;
     :latitude 60.3  . 
 <http://abc/mondial/10/countries/SF/provinces/Uusimaa/cities/Helsinki> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Uusimaa> ;
   :name 'Helsinki';
     :population 487428;
     :longitude 24.95;
     :latitude 60.1667  . 
 <http://abc/mondial/10/countries/SF/provinces/Uusimaa/cities/Espoo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Uusimaa> ;
   :name 'Espoo';
     :population 160480;
     :longitude 24.3;
     :latitude 60.2  . 
 <http://abc/mondial/10/countries/SF/provinces/Vaasa/cities/Vaasa> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SF/provinces/Vaasa> ;
   :name 'Vaasa';
     :population 54275;
     :longitude 21.3;
     :latitude 63  . 
 <http://abc/mondial/10/countries/N/provinces/Oslo/cities/Oslo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Oslo> ;
   :name 'Oslo';
     :population 449337;
     :longitude 10.7333;
     :latitude 59.9333  . 
 <http://abc/mondial/10/countries/N/provinces/Oestfold/cities/Moss> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Oestfold> ;
   :name 'Moss';
     :population 24517;
     :longitude 10.4;
     :latitude 59.3  . 
 <http://abc/mondial/10/countries/N/provinces/Hedmark/cities/Hamar> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Hedmark> ;
   :name 'Hamar';
     :population 15685;
     :longitude 11.5;
     :latitude 60.5  . 
 <http://abc/mondial/10/countries/N/provinces/Oppland/cities/Lillehammer> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Oppland> ;
   :name 'Lillehammer';
     :population 22118;
     :longitude 10.3;
     :latitude 61.1  . 
 <http://abc/mondial/10/countries/N/provinces/Buskerud/cities/Drammen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Buskerud> ;
   :name 'Drammen';
     :population 50855;
     :longitude 10.1;
     :latitude 59.4  . 
 <http://abc/mondial/10/countries/N/provinces/Vestfold/cities/Toensberg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Vestfold> ;
   :name 'Toensberg';
     :population 8984;
     :longitude 10.2;
     :latitude 59.2  . 
 <http://abc/mondial/10/countries/N/provinces/Telemark/cities/Skien> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Telemark> ;
   :name 'Skien';
     :population 47010;
     :longitude 9.4;
     :latitude 59.1  . 
 <http://abc/mondial/10/countries/N/provinces/AustAgder/cities/Arendal> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/AustAgder> ;
   :name 'Arendal';
     :population 12174;
     :longitude 8.4;
     :latitude 58.3  . 
 <http://abc/mondial/10/countries/N/provinces/VestAgder/cities/Kristiansand> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/VestAgder> ;
   :name 'Kristiansand';
     :population 62640;
     :longitude 8;
     :latitude 58.1  . 
 <http://abc/mondial/10/countries/N/provinces/Rogaland/cities/Stavanger> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Rogaland> ;
   :name 'Stavanger';
     :population 95089;
     :longitude 5.5;
     :latitude 59  . 
 <http://abc/mondial/10/countries/N/provinces/Hordaland/cities/Bergen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Hordaland> ;
   :name 'Bergen';
     :population 207916;
     :longitude 5.2;
     :latitude 60.2  . 
 <http://abc/mondial/10/countries/N/provinces/SognogFjordane/cities/Hermannsverk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/SognogFjordane> ;
   :name 'Hermannsverk';
     :population 706;
     :longitude 6.5;
     :latitude 61.1  . 
 <http://abc/mondial/10/countries/N/provinces/MoereogRomsdal/cities/Molde> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/MoereogRomsdal> ;
   :name 'Molde';
     :population 21448;
     :longitude 7.1;
     :latitude 62.5  . 
 <http://abc/mondial/10/countries/N/provinces/SoerTrondelag/cities/Trondheim> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/SoerTrondelag> ;
   :name 'Trondheim';
     :population 134426;
     :longitude 10.2;
     :latitude 63.3  . 
 <http://abc/mondial/10/countries/N/provinces/NordTrondelag/cities/Steinkjer> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/NordTrondelag> ;
   :name 'Steinkjer';
     :population 20480;
     :longitude 11.3;
     :latitude 64  . 
 <http://abc/mondial/10/countries/N/provinces/Nordland/cities/Svolvaer> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Nordland> ;
   :name 'Svolvaer';
     :population 4500;
     :longitude 14.3;
     :latitude 68.2  . 
 <http://abc/mondial/10/countries/N/provinces/Nordland/cities/Narvik> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Nordland> ;
   :name 'Narvik';
     :population 18754;
     :longitude 17.3;
     :latitude 68.3  . 
 <http://abc/mondial/10/countries/N/provinces/Nordland/cities/Bodoe> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Nordland> ;
   :name 'Bodoe';
     :population 34479;
     :longitude 14.2;
     :latitude 67.2  . 
 <http://abc/mondial/10/countries/N/provinces/Troms/cities/Tromsoe> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Troms> ;
   :name 'Tromsoe';
     :population 48109;
     :longitude 19;
     :latitude 69.4  . 
 <http://abc/mondial/10/countries/N/provinces/Finnmark/cities/Hammerfest> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Finnmark> ;
   :name 'Hammerfest';
     :population 7089;
     :longitude 23.4;
     :latitude 70.4  . 
 <http://abc/mondial/10/countries/N/provinces/Finnmark/cities/Vadsoe> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/N/provinces/Finnmark> ;
   :name 'Vadsoe';
     :population 5961;
     :longitude 29.5;
     :latitude 70.5  . 
 <http://abc/mondial/10/countries/S/provinces/Alvsborg/cities/Vanersborg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Alvsborg> ;
   :name 'Vanersborg';
     :population 35804;
     :longitude 12.2;
     :latitude 58.2  . 
 <http://abc/mondial/10/countries/S/provinces/Blekinge/cities/Karlskrona> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Blekinge> ;
   :name 'Karlskrona';
     :population 59007;
     :longitude 15.3;
     :latitude 56.1  . 
 <http://abc/mondial/10/countries/S/provinces/Gavleborg/cities/Gavle> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Gavleborg> ;
   :name 'Gavle';
     :population 87431;
     :longitude 17;
     :latitude 60.4  . 
 <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus/cities/Goteborg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus> ;
   :name 'Goteborg';
     :population 449189;
     :longitude 12;
     :latitude 57.4  . 
 <http://abc/mondial/10/countries/S/provinces/Gotland/cities/Visby> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Gotland> ;
   :name 'Visby';
     :population 20000;
     :longitude 18.2;
     :latitude 57.3  . 
 <http://abc/mondial/10/countries/S/provinces/Halland/cities/Halmstad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Halland> ;
   :name 'Halmstad';
     :population 77601;
     :longitude 13;
     :latitude 56.4  . 
 <http://abc/mondial/10/countries/S/provinces/Jamtland/cities/Ostersund> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Jamtland> ;
   :name 'Ostersund';
     :population 56662;
     :longitude 14.3;
     :latitude 63.2  . 
 <http://abc/mondial/10/countries/S/provinces/Jonkoping/cities/Jonkoping> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Jonkoping> ;
   :name 'Jonkoping';
     :population 115429;
     :longitude 14;
     :latitude 57.4  . 
 <http://abc/mondial/10/countries/S/provinces/Kalmar/cities/Kalmar> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Kalmar> ;
   :name 'Kalmar';
     :population 54554;
     :longitude 16.3;
     :latitude 56.4  . 
 <http://abc/mondial/10/countries/S/provinces/Dalarna/cities/Falun> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Dalarna> ;
   :name 'Falun';
     :population 51900;
     :longitude 15.3;
     :latitude 60.3  . 
 <http://abc/mondial/10/countries/S/provinces/Kristianstad/cities/Kristianstad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Kristianstad> ;
   :name 'Kristianstad';
     :population 69941;
     :longitude 14;
     :latitude 56  . 
 <http://abc/mondial/10/countries/S/provinces/Kronoberg/cities/Vaxjo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Kronoberg> ;
   :name 'Vaxjo';
     :population 66925;
     :longitude 15;
     :latitude 56.5  . 
 <http://abc/mondial/10/countries/S/provinces/Malmohus/cities/Malmo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Malmohus> ;
   :name 'Malmo';
     :population 245699;
     :longitude 13;
     :latitude 55.3  . 
 <http://abc/mondial/10/countries/S/provinces/Malmohus/cities/Helsingborg> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Malmohus> ;
   :name 'Helsingborg';
     :population 114339  . 
 <http://abc/mondial/10/countries/S/provinces/Norrbotten/cities/Lulea> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Norrbotten> ;
   :name 'Lulea';
     :population 66526;
     :longitude 22.1;
     :latitude 65.4  . 
 <http://abc/mondial/10/countries/S/provinces/Norrbotten/cities/Jokkmokk> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Norrbotten> ;
   :name 'Jokkmokk';
     :population 6822;
     :longitude 19.5;
     :latitude 66.1  . 
 <http://abc/mondial/10/countries/S/provinces/Orebro/cities/Orebro> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Orebro> ;
   :name 'Orebro';
     :population 119635;
     :longitude 15;
     :latitude 59.2  . 
 <http://abc/mondial/10/countries/S/provinces/Ostergotland/cities/Linkoping> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Ostergotland> ;
   :name 'Linkoping';
     :population 131370;
     :longitude 15.3;
     :latitude 58.3  . 
 <http://abc/mondial/10/countries/S/provinces/Ostergotland/cities/Norrkoping> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Ostergotland> ;
   :name 'Norrkoping';
     :population 123795  . 
 <http://abc/mondial/10/countries/S/provinces/Skaraborg/cities/Mariestad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Skaraborg> ;
   :name 'Mariestad';
     :population 24255;
     :longitude 13.5;
     :latitude 58.4  . 
 <http://abc/mondial/10/countries/S/provinces/Sodermanland/cities/Nykoping> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Sodermanland> ;
   :name 'Nykoping';
     :population 64199;
     :longitude 17;
     :latitude 58.5  . 
 <http://abc/mondial/10/countries/S/provinces/Stockholm/cities/Stockholm> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Stockholm> ;
   :name 'Stockholm';
     :population 711119;
     :longitude 18.0667;
     :latitude 59.35  . 
 <http://abc/mondial/10/countries/S/provinces/Uppsala/cities/Uppsala> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Uppsala> ;
   :name 'Uppsala';
     :population 183472;
     :longitude 17.4;
     :latitude 59.5  . 
 <http://abc/mondial/10/countries/S/provinces/Varmland/cities/Karlstad> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Varmland> ;
   :name 'Karlstad';
     :population 74669;
     :longitude 13.5;
     :latitude 59.4  . 
 <http://abc/mondial/10/countries/S/provinces/Vasterbotten/cities/Umea> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Vasterbotten> ;
   :name 'Umea';
     :population 85698;
     :longitude 20.1;
     :latitude 63.5  . 
 <http://abc/mondial/10/countries/S/provinces/Vasternorrland/cities/Harnosand> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Vasternorrland> ;
   :name 'Harnosand';
     :population 27287;
     :longitude 18;
     :latitude 62.4  . 
 <http://abc/mondial/10/countries/S/provinces/Vastmanland/cities/Vasteras> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/S/provinces/Vastmanland> ;
   :name 'Vasteras';
     :population 123728;
     :longitude 16.3;
     :latitude 59.4  . 
 <http://abc/mondial/10/countries/MC/cities/Monaco> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/MC> ;
   :name 'Monaco';
     :population 1234;
     :longitude 7.2;
     :latitude 43.7  . 
 <http://abc/mondial/10/countries/GBZ/cities/Gibraltar> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GBZ> ;
   :name 'Gibraltar';
     :longitude -5.2;
     :latitude 36.15  . 
 <http://abc/mondial/10/countries/GBG/cities/SaintPeterPort> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GBG> ;
   :name 'Saint Peter Port';
     :longitude -2.6;
     :latitude 49.6  . 
 <http://abc/mondial/10/countries/V/cities/VaticanCity> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/V> ;
   :name 'Vatican City';
     :population 392;
     :longitude 12.3;
     :latitude 41.5  . 
 <http://abc/mondial/10/countries/IS/cities/Reykjavik> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/IS> ;
   :name 'Reykjavik';
     :population 84000;
     :longitude -21.9333;
     :latitude 64.1333  . 
 <http://abc/mondial/10/countries/IS/cities/Keflavik> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/IS> ;
   :name 'Keflavik';
     :population 6600;
     :longitude -22.5;
     :latitude 64  . 
 <http://abc/mondial/10/countries/IS/cities/Hafnarfjoerdur> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/IS> ;
   :name 'Hafnarfjoerdur';
     :population 12000;
     :longitude -22;
     :latitude 64  . 
 <http://abc/mondial/10/countries/IS/cities/Akureyri> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/IS> ;
   :name 'Akureyri';
     :population 13000;
     :longitude -18.3;
     :latitude 65.4  . 
 <http://abc/mondial/10/countries/IRL/cities/Dublin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/IRL> ;
   :name 'Dublin';
     :population 502337;
     :longitude -6.35;
     :latitude 53.3667  . 
 <http://abc/mondial/10/countries/RSM/cities/SanMarino> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/RSM> ;
   :name 'San Marino';
     :population 4416;
     :longitude 12.2;
     :latitude 43.5  . 
 <http://abc/mondial/10/countries/GBJ/cities/SaintHelier> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GBJ> ;
   :name 'Saint Helier';
     :longitude -2.1;
     :latitude 49.2  . 
 <http://abc/mondial/10/countries/M/cities/Valletta> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/M> ;
   :name 'Valletta';
     :population 9302;
     :longitude 14.5;
     :latitude 35.9  . 
 <http://abc/mondial/10/countries/M/cities/Victoria> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/M> ;
   :name 'Victoria';
     :population 6414;
     :longitude 14.25;
     :latitude 36.05  . 
 <http://abc/mondial/10/countries/GBM/cities/Douglas> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GBM> ;
   :name 'Douglas';
     :longitude -4.6;
     :latitude 54.15  . 
 <http://abc/mondial/10/countries/MD/cities/Chisinau> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/MD> ;
   :name 'Chisinau';
     :population 663000;
     :longitude 28.1;
     :latitude 47.2  . 
 <http://abc/mondial/10/countries/P/provinces/Aveiro/cities/Aveiro> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Aveiro> ;
   :name 'Aveiro'  . 
 <http://abc/mondial/10/countries/P/provinces/Beja/cities/Beja> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Beja> ;
   :name 'Beja'  . 
 <http://abc/mondial/10/countries/P/provinces/Braga/cities/Braga> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Braga> ;
   :name 'Braga';
     :population 63033  . 
 <http://abc/mondial/10/countries/P/provinces/Braganca/cities/Braganca> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Braganca> ;
   :name 'Braganca'  . 
 <http://abc/mondial/10/countries/P/provinces/CasteloBranco/cities/CasteloBranco> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/CasteloBranco> ;
   :name 'Castelo Branco'  . 
 <http://abc/mondial/10/countries/P/provinces/Coimbra/cities/Coimbra> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Coimbra> ;
   :name 'Coimbra';
     :population 74616  . 
 <http://abc/mondial/10/countries/P/provinces/Evora/cities/Evora> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Evora> ;
   :name 'Evora'  . 
 <http://abc/mondial/10/countries/P/provinces/Algarve/cities/Faro> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Algarve> ;
   :name 'Faro'  . 
 <http://abc/mondial/10/countries/P/provinces/Guarda/cities/Guarda> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Guarda> ;
   :name 'Guarda'  . 
 <http://abc/mondial/10/countries/P/provinces/Leiria/cities/Leiria> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Leiria> ;
   :name 'Leiria'  . 
 <http://abc/mondial/10/countries/P/provinces/Lisbon/cities/Lisbon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Lisbon> ;
   :name 'Lisbon';
     :population 807937;
     :longitude -9.13333;
     :latitude 38.7167  . 
 <http://abc/mondial/10/countries/P/provinces/Lisbon/cities/Amadora> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Lisbon> ;
   :name 'Amadora';
     :population 95518  . 
 <http://abc/mondial/10/countries/P/provinces/Lisbon/cities/Barreiro> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Lisbon> ;
   :name 'Barreiro';
     :population 50863  . 
 <http://abc/mondial/10/countries/P/provinces/Lisbon/cities/Almada> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Lisbon> ;
   :name 'Almada';
     :population 42607  . 
 <http://abc/mondial/10/countries/P/provinces/Portalegre/cities/Portalegre> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Portalegre> ;
   :name 'Portalegre'  . 
 <http://abc/mondial/10/countries/P/provinces/Porto/cities/Porto> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Porto> ;
   :name 'Porto';
     :population 327368  . 
 <http://abc/mondial/10/countries/P/provinces/Porto/cities/VilaNovadeGaia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Porto> ;
   :name 'Vila Nova de Gaia';
     :population 62468  . 
 <http://abc/mondial/10/countries/P/provinces/Santarem/cities/Santarem> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Santarem> ;
   :name 'Santarem'  . 
 <http://abc/mondial/10/countries/P/provinces/Setubal/cities/Setubal> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Setubal> ;
   :name 'Setubal';
     :population 77885  . 
 <http://abc/mondial/10/countries/P/provinces/VianadoCastelo/cities/VianadoCastelo> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/VianadoCastelo> ;
   :name 'Viana do Castelo'  . 
 <http://abc/mondial/10/countries/P/provinces/VilaReal/cities/VilaReal> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/VilaReal> ;
   :name 'Vila Real'  . 
 <http://abc/mondial/10/countries/P/provinces/Viseu/cities/Viseu> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Viseu> ;
   :name 'Viseu'  . 
 <http://abc/mondial/10/countries/P/provinces/Azores/cities/PontaDelgada> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Azores> ;
   :name 'Ponta Delgada';
     :population 46102;
     :longitude -27.1;
     :latitude 38.35  . 
 <http://abc/mondial/10/countries/P/provinces/Madeira/cities/Funchal> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/P/provinces/Madeira> ;
   :name 'Funchal';
     :population 44111;
     :longitude -15.9;
     :latitude 31  . 
 <http://abc/mondial/10/countries/SVAX/cities/Longyearbyen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/SVAX> ;
   :name 'Longyearbyen';
     :longitude 15.33;
     :latitude 78.13  . 
 <http://abc/mondial/10/countries/GB/provinces/Avon/cities/Bristol> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Avon> ;
   :name 'Bristol';
     :population 399200  . 
 <http://abc/mondial/10/countries/GB/provinces/Bedfordshire/cities/Bedford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Bedfordshire> ;
   :name 'Bedford';
     :population 137300  . 
 <http://abc/mondial/10/countries/GB/provinces/Bedfordshire/cities/Luton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Bedfordshire> ;
   :name 'Luton';
     :population 178600  . 
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Reading> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Berkshire> ;
   :name 'Reading';
     :population 137700  . 
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Wokingham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Berkshire> ;
   :name 'Wokingham';
     :population 142900  . 
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Newbury> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Berkshire> ;
   :name 'Newbury';
     :population 141000  . 
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Windsor> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Berkshire> ;
   :name 'Windsor';
     :population 136700  . 
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Slough> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Berkshire> ;
   :name 'Slough';
     :population 103500  . 
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Bracknell> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Berkshire> ;
   :name 'Bracknell';
     :population 101900  . 
 <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire/cities/Aylesbury> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire> ;
   :name 'Aylesbury';
     :population 151600  . 
 <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire/cities/MiltonKeynes> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire> ;
   :name 'Milton Keynes';
     :population 184400  . 
 <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire/cities/Wycombe> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire> ;
   :name 'Wycombe';
     :population 161400  . 
 <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire/cities/Cambridge> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire> ;
   :name 'Cambridge';
     :population 113800  . 
 <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire/cities/Peterborough> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire> ;
   :name 'Peterborough';
     :population 156400  . 
 <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire/cities/Huntingdon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire> ;
   :name 'Huntingdon';
     :population 148800  . 
 <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Chester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cheshire> ;
   :name 'Chester';
     :population 120800  . 
 <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Warrington> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cheshire> ;
   :name 'Warrington';
     :population 185000  . 
 <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Macclesfield> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cheshire> ;
   :name 'Macclesfield';
     :population 151400  . 
 <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Crewe> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cheshire> ;
   :name 'Crewe';
     :population 109500  . 
 <http://abc/mondial/10/countries/GB/provinces/Cleveland/cities/Middlesbrough> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cleveland> ;
   :name 'Middlesbrough';
     :population 145800  . 
 <http://abc/mondial/10/countries/GB/provinces/Cleveland/cities/StocktononTees> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cleveland> ;
   :name 'Stockton on Tees';
     :population 177800  . 
 <http://abc/mondial/10/countries/GB/provinces/Cornwall/cities/Truro> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cornwall> ;
   :name 'Truro'  . 
 <http://abc/mondial/10/countries/GB/provinces/Cumbria/cities/Carlisle> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cumbria> ;
   :name 'Carlisle';
     :population 102900  . 
 <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/Derby> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Derbyshire> ;
   :name 'Derby';
     :population 230500  . 
 <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/SuttoninAshfield> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Derbyshire> ;
   :name 'Sutton in Ashfield';
     :population 109800  . 
 <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/Chesterfield> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Derbyshire> ;
   :name 'Chesterfield';
     :population 101200  . 
 <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/Matlock> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Derbyshire> ;
   :name 'Matlock'  . 
 <http://abc/mondial/10/countries/GB/provinces/Devon/cities/Plymouth> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Devon> ;
   :name 'Plymouth';
     :population 255800  . 
 <http://abc/mondial/10/countries/GB/provinces/Devon/cities/Exeter> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Devon> ;
   :name 'Exeter';
     :population 105100  . 
 <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Bournemouth> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Dorset> ;
   :name 'Bournemouth';
     :population 159900  . 
 <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Poole> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Dorset> ;
   :name 'Poole';
     :population 137200  . 
 <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Dorchester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Dorset> ;
   :name 'Dorchester'  . 
 <http://abc/mondial/10/countries/GB/provinces/Durham/cities/Darlington> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Durham> ;
   :name 'Darlington';
     :population 100200  . 
 <http://abc/mondial/10/countries/GB/provinces/Durham/cities/Durham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Durham> ;
   :name 'Durham'  . 
 <http://abc/mondial/10/countries/GB/provinces/EastSussex/cities/Brighton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/EastSussex> ;
   :name 'Brighton';
     :population 154400  . 
 <http://abc/mondial/10/countries/GB/provinces/EastSussex/cities/Lewes> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/EastSussex> ;
   :name 'Lewes'  . 
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Chelmsford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Essex> ;
   :name 'Chelmsford';
     :population 155700  . 
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/SouthendonSea> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Essex> ;
   :name 'Southend on Sea';
     :population 167500  . 
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Basildon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Essex> ;
   :name 'Basildon';
     :population 161700  . 
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Colchester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Essex> ;
   :name 'Colchester';
     :population 149100  . 
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Braintree> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Essex> ;
   :name 'Braintree';
     :population 121800  . 
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/EppingForest> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Essex> ;
   :name 'Epping Forest';
     :population 118200  . 
 <http://abc/mondial/10/countries/GB/provinces/Gloucestershire/cities/Cheltenham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Gloucestershire> ;
   :name 'Cheltenham';
     :population 106700  . 
 <http://abc/mondial/10/countries/GB/provinces/Gloucestershire/cities/Stroud> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Gloucestershire> ;
   :name 'Stroud';
     :population 105400  . 
 <http://abc/mondial/10/countries/GB/provinces/Gloucestershire/cities/Gloucester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Gloucestershire> ;
   :name 'Gloucester';
     :population 104800  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterLondon> ;
   :name 'London';
     :population 6967500;
     :longitude 0;
     :latitude 51.4833  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Manchester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Manchester';
     :population 431100  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Wigan> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Wigan';
     :population 310000  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Stockport> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Stockport';
     :population 291400  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Bolton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Bolton';
     :population 265200  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Salford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Salford';
     :population 230700  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Tameside> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Tameside';
     :population 221800  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Oldham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Oldham';
     :population 220400  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Trafford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Trafford';
     :population 218100  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Rochdale> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Rochdale';
     :population 207100  . 
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Bury> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> ;
   :name 'Bury';
     :population 181400  . 
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Winchester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hampshire> ;
   :name 'Winchester';
     :population 100500  . 
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Southampton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hampshire> ;
   :name 'Southampton';
     :population 211700  . 
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Portsmouth> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hampshire> ;
   :name 'Portsmouth';
     :population 189100  . 
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Basingstoke> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hampshire> ;
   :name 'Basingstoke';
     :population 146500  . 
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Havant> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hampshire> ;
   :name 'Havant';
     :population 117500  . 
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Eastleigh> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hampshire> ;
   :name 'Eastleigh';
     :population 109600  . 
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Fareham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hampshire> ;
   :name 'Fareham';
     :population 101000  . 
 <http://abc/mondial/10/countries/GB/provinces/HerefordandWorcester/cities/Worcester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/HerefordandWorcester> ;
   :name 'Worcester'  . 
 <http://abc/mondial/10/countries/GB/provinces/Hertfordshire/cities/SaintAlbans> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hertfordshire> ;
   :name 'Saint Albans';
     :population 127700  . 
 <http://abc/mondial/10/countries/GB/provinces/Hertfordshire/cities/Hertford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Hertfordshire> ;
   :name 'Hertford'  . 
 <http://abc/mondial/10/countries/GB/provinces/Humberside/cities/KingstonuponHull> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Humberside> ;
   :name 'Kingston upon Hull';
     :population 269100  . 
 <http://abc/mondial/10/countries/GB/provinces/Humberside/cities/Beverley> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Humberside> ;
   :name 'Beverley';
     :population 115800  . 
 <http://abc/mondial/10/countries/GB/provinces/Humberside/cities/Hull> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Humberside> ;
   :name 'Hull'  . 
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Maidstone> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Kent> ;
   :name 'Maidstone';
     :population 138500  . 
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/RochesteruponMedway> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Kent> ;
   :name 'Rochester upon Medway';
     :population 148200  . 
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Canterbury> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Kent> ;
   :name 'Canterbury';
     :population 132400  . 
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Swale> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Kent> ;
   :name 'Swale';
     :population 117200  . 
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Sevenoaks> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Kent> ;
   :name 'Sevenoaks';
     :population 109400  . 
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Dover> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Kent> ;
   :name 'Dover';
     :population 106100  . 
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Tonbridge> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Kent> ;
   :name 'Tonbridge';
     :population 102100  . 
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/TunbridgeWells> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Kent> ;
   :name 'Tunbridge Wells';
     :population 101800  . 
 <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Preston> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Lancashire> ;
   :name 'Preston';
     :population 132200  . 
 <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Blackpool> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Lancashire> ;
   :name 'Blackpool';
     :population 153600  . 
 <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Blackburn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Lancashire> ;
   :name 'Blackburn';
     :population 139500  . 
 <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Lancaster> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Lancashire> ;
   :name 'Lancaster';
     :population 133600  . 
 <http://abc/mondial/10/countries/GB/provinces/Leicestershire/cities/Leichester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Leicestershire> ;
   :name 'Leichester';
     :population 293400  . 
 <http://abc/mondial/10/countries/GB/provinces/Lincolnshire/cities/Lincoln> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Lincolnshire> ;
   :name 'Lincoln'  . 
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Liverpool> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Merseyside> ;
   :name 'Liverpool';
     :population 474000  . 
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Wiral> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Merseyside> ;
   :name 'Wiral';
     :population 331100  . 
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Sefton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Merseyside> ;
   :name 'Sefton';
     :population 292400  . 
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/SaintHelens> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Merseyside> ;
   :name 'Saint Helens';
     :population 180200  . 
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Knowsley> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Merseyside> ;
   :name 'Knowsley';
     :population 155300  . 
 <http://abc/mondial/10/countries/GB/provinces/Norfolk/cities/Norwich> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Norfolk> ;
   :name 'Norwich';
     :population 128100  . 
 <http://abc/mondial/10/countries/GB/provinces/Norfolk/cities/KingsLynn> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Norfolk> ;
   :name 'Kings Lynn';
     :population 131600  . 
 <http://abc/mondial/10/countries/GB/provinces/Northamptonshire/cities/Northampton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Northamptonshire> ;
   :name 'Northampton';
     :population 187200  . 
 <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/Harrogate> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire> ;
   :name 'Harrogate';
     :population 146500  . 
 <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/Scarborough> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire> ;
   :name 'Scarborough';
     :population 108700  . 
 <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/York> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire> ;
   :name 'York';
     :population 104000  . 
 <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/Northallerton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire> ;
   :name 'Northallerton'  . 
 <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire/cities/Nottingham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire> ;
   :name 'Nottingham';
     :population 282400  . 
 <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire/cities/NewarkonTrent> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire> ;
   :name 'Newark on Trent';
     :population 104400  . 
 <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire/cities/Mansfield> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire> ;
   :name 'Mansfield';
     :population 102100  . 
 <http://abc/mondial/10/countries/GB/provinces/Oxfordshire/cities/Oxford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Oxfordshire> ;
   :name 'Oxford';
     :population 132000  . 
 <http://abc/mondial/10/countries/GB/provinces/Shropshire/cities/Shrewsbury> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Shropshire> ;
   :name 'Shrewsbury'  . 
 <http://abc/mondial/10/countries/GB/provinces/Somerset/cities/Taunton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Somerset> ;
   :name 'Taunton'  . 
 <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Barnsley> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire> ;
   :name 'Barnsley';
     :population 226500  . 
 <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Sheffield> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire> ;
   :name 'Sheffield';
     :population 530100  . 
 <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Doncaster> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire> ;
   :name 'Doncaster';
     :population 292500  . 
 <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Rotherham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire> ;
   :name 'Rotherham';
     :population 256300  . 
 <http://abc/mondial/10/countries/GB/provinces/Staffordshire/cities/Stafford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Staffordshire> ;
   :name 'Stafford';
     :population 121500  . 
 <http://abc/mondial/10/countries/GB/provinces/Staffordshire/cities/StokeonTrent> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Staffordshire> ;
   :name 'Stoke on Trent';
     :population 254200  . 
 <http://abc/mondial/10/countries/GB/provinces/Staffordshire/cities/NewcastleunderLyme> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Staffordshire> ;
   :name 'Newcastle under Lyme';
     :population 123000  . 
 <http://abc/mondial/10/countries/GB/provinces/Suffolk/cities/Ipswich> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Suffolk> ;
   :name 'Ipswich';
     :population 114800  . 
 <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Guildford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Surrey> ;
   :name 'Guildford';
     :population 126200  . 
 <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Reigate> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Surrey> ;
   :name 'Reigate';
     :population 118800  . 
 <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Elmbridge> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Surrey> ;
   :name 'Elmbridge';
     :population 117300  . 
 <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Kingston> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Surrey> ;
   :name 'Kingston'  . 
 <http://abc/mondial/10/countries/GB/provinces/TyneandWear/cities/Sunderland> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/TyneandWear> ;
   :name 'Sunderland';
     :population 292200  . 
 <http://abc/mondial/10/countries/GB/provinces/TyneandWear/cities/NewcastleuponTyne> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/TyneandWear> ;
   :name 'Newcastle upon Tyne';
     :population 283600  . 
 <http://abc/mondial/10/countries/GB/provinces/TyneandWear/cities/Gateshead> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/TyneandWear> ;
   :name 'Gateshead';
     :population 202400  . 
 <http://abc/mondial/10/countries/GB/provinces/Warwickshire/cities/Warwick> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Warwickshire> ;
   :name 'Warwick';
     :population 118600  . 
 <http://abc/mondial/10/countries/GB/provinces/Warwickshire/cities/Nuneaton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Warwickshire> ;
   :name 'Nuneaton';
     :population 118500  . 
 <http://abc/mondial/10/countries/GB/provinces/Warwickshire/cities/StratfordonAvon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Warwickshire> ;
   :name 'Stratford on Avon';
     :population 108600  . 
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Birmingham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestMidlands> ;
   :name 'Birmingham';
     :population 1008400;
     :longitude -1.93333;
     :latitude 52.4833  . 
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Dudley> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestMidlands> ;
   :name 'Dudley';
     :population 312200  . 
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Coventry> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestMidlands> ;
   :name 'Coventry';
     :population 302500  . 
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Walsall> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestMidlands> ;
   :name 'Walsall';
     :population 263900  . 
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Wolverhampton> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestMidlands> ;
   :name 'Wolverhampton';
     :population 245100  . 
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Solihull> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestMidlands> ;
   :name 'Solihull';
     :population 202000  . 
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/WestBromwich> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestMidlands> ;
   :name 'West Bromwich';
     :population 154500  . 
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Sandwell> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestMidlands> ;
   :name 'Sandwell';
     :population 293700  . 
 <http://abc/mondial/10/countries/GB/provinces/WestSussex/cities/Chichester> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestSussex> ;
   :name 'Chichester';
     :population 102500  . 
 <http://abc/mondial/10/countries/GB/provinces/WestSussex/cities/Horsham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestSussex> ;
   :name 'Horsham';
     :population 112300  . 
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Wakefield> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestYorkshire> ;
   :name 'Wakefield';
     :population 317300  . 
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Leeds> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestYorkshire> ;
   :name 'Leeds';
     :population 724400  . 
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Bradford> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestYorkshire> ;
   :name 'Bradford';
     :population 481700  . 
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Kirklees> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestYorkshire> ;
   :name 'Kirklees';
     :population 386900  . 
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Huddersfield> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/WestYorkshire> ;
   :name 'Huddersfield';
     :population 148500  . 
 <http://abc/mondial/10/countries/GB/provinces/Wiltshire/cities/Salisbury> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Wiltshire> ;
   :name 'Salisbury';
     :population 109800  . 
 <http://abc/mondial/10/countries/GB/provinces/Wiltshire/cities/Trowbridge> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Wiltshire> ;
   :name 'Trowbridge'  . 
 <http://abc/mondial/10/countries/GB/provinces/Borders/cities/NewtownSt.Boswells> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Borders> ;
   :name 'Newtown St. Boswells'  . 
 <http://abc/mondial/10/countries/GB/provinces/Central/cities/Stirling> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Central> ;
   :name 'Stirling'  . 
 <http://abc/mondial/10/countries/GB/provinces/DumfriesandGalloway/cities/Dumfries> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/DumfriesandGalloway> ;
   :name 'Dumfries'  . 
 <http://abc/mondial/10/countries/GB/provinces/Fife/cities/Glenrothes> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Fife> ;
   :name 'Glenrothes'  . 
 <http://abc/mondial/10/countries/GB/provinces/Grampian/cities/Aberdeen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Grampian> ;
   :name 'Aberdeen';
     :population 219100  . 
 <http://abc/mondial/10/countries/GB/provinces/Highland/cities/Inverness> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Highland> ;
   :name 'Inverness'  . 
 <http://abc/mondial/10/countries/GB/provinces/Lothian/cities/Edinburgh> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Lothian> ;
   :name 'Edinburgh';
     :population 447600;
     :longitude -3.18333;
     :latitude 55.9167  . 
 <http://abc/mondial/10/countries/GB/provinces/Strathclyde/cities/Glasgow> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Strathclyde> ;
   :name 'Glasgow';
     :population 674800;
     :longitude -4.28333;
     :latitude 55.8667  . 
 <http://abc/mondial/10/countries/GB/provinces/Strathclyde/cities/Renfrew> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Strathclyde> ;
   :name 'Renfrew';
     :population 201700  . 
 <http://abc/mondial/10/countries/GB/provinces/Tayside/cities/Dundee> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Tayside> ;
   :name 'Dundee';
     :population 167600  . 
 <http://abc/mondial/10/countries/GB/provinces/AberconwyandColwyn/cities/ColwynBay> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/AberconwyandColwyn> ;
   :name 'Colwyn Bay'  . 
 <http://abc/mondial/10/countries/GB/provinces/Anglesey/cities/Llangefni> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Anglesey> ;
   :name 'Llangefni'  . 
 <http://abc/mondial/10/countries/GB/provinces/BlaenauGwent/cities/EbbwVale> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/BlaenauGwent> ;
   :name 'Ebbw Vale'  . 
 <http://abc/mondial/10/countries/GB/provinces/Bridgend/cities/Bridgend> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Bridgend> ;
   :name 'Bridgend'  . 
 <http://abc/mondial/10/countries/GB/provinces/Caerphilly/cities/YstradFawr> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Caerphilly> ;
   :name 'Ystrad Fawr'  . 
 <http://abc/mondial/10/countries/GB/provinces/Cardiff/cities/Cardiff> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Cardiff> ;
   :name 'Cardiff';
     :population 300000;
     :longitude -3.16667;
     :latitude 51.4667  . 
 <http://abc/mondial/10/countries/GB/provinces/Carmarthenshire/cities/Carmarthen> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Carmarthenshire> ;
   :name 'Carmarthen'  . 
 <http://abc/mondial/10/countries/GB/provinces/Ceredigion/cities/Aberystwyth> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Ceredigion> ;
   :name 'Aberystwyth'  . 
 <http://abc/mondial/10/countries/GB/provinces/Denbighshire/cities/Ruthin> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Denbighshire> ;
   :name 'Ruthin'  . 
 <http://abc/mondial/10/countries/GB/provinces/Flintshire/cities/Mold> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Flintshire> ;
   :name 'Mold'  . 
 <http://abc/mondial/10/countries/GB/provinces/Gwynedd/cities/Caernarfon> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Gwynedd> ;
   :name 'Caernarfon'  . 
 <http://abc/mondial/10/countries/GB/provinces/MerthyrTydfil/cities/MerthyrTydfil> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/MerthyrTydfil> ;
   :name 'Merthyr Tydfil'  . 
 <http://abc/mondial/10/countries/GB/provinces/Monmouthshire/cities/Cwmbran> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Monmouthshire> ;
   :name 'Cwmbran'  . 
 <http://abc/mondial/10/countries/GB/provinces/NeathandPortTalbot/cities/PortTalbot> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/NeathandPortTalbot> ;
   :name 'Port Talbot'  . 
 <http://abc/mondial/10/countries/GB/provinces/Newport/cities/Newport> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Newport> ;
   :name 'Newport';
     :population 137000  . 
 <http://abc/mondial/10/countries/GB/provinces/Pembrokeshire/cities/Haverfordwest> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Pembrokeshire> ;
   :name 'Haverfordwest'  . 
 <http://abc/mondial/10/countries/GB/provinces/Powys/cities/LlandrindodWells> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Powys> ;
   :name 'Llandrindod Wells'  . 
 <http://abc/mondial/10/countries/GB/provinces/RhonddaCynonTaff/cities/Rhondda> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/RhonddaCynonTaff> ;
   :name 'Rhondda'  . 
 <http://abc/mondial/10/countries/GB/provinces/Swansea/cities/Swansea> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Swansea> ;
   :name 'Swansea';
     :population 189300  . 
 <http://abc/mondial/10/countries/GB/provinces/Torfaen/cities/Pontypool> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Torfaen> ;
   :name 'Pontypool'  . 
 <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan/cities/RhymneyValley> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan> ;
   :name 'Rhymney Valley';
     :population 104300  . 
 <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan/cities/Barry> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan> ;
   :name 'Barry'  . 
 <http://abc/mondial/10/countries/GB/provinces/Wrexham/cities/Wrexham> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Wrexham> ;
   :name 'Wrexham';
     :population 117100  . 
 <http://abc/mondial/10/countries/GB/provinces/NorthernIreland/cities/Belfast> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/NorthernIreland> ;
   :name 'Belfast';
     :population 297100;
     :longitude -5.91667;
     :latitude 54.6  . 
 <http://abc/mondial/10/countries/GB/provinces/Orkneys/cities/Kirkwall> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Orkneys> ;
   :name 'Kirkwall';
     :population 6330;
     :longitude -3;
     :latitude 59  . 
 <http://abc/mondial/10/countries/GB/provinces/OuterHebrides/cities/Stornoway> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/OuterHebrides> ;
   :name 'Stornoway';
     :population 8000;
     :longitude -6.4;
     :latitude 58.2  . 
 <http://abc/mondial/10/countries/GB/provinces/Shetland/cities/Lerwick> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/GB/provinces/Shetland> ;
   :name 'Lerwick';
     :population 6570;
     :longitude -1.15;
     :latitude 60.15  . 
 <http://abc/mondial/10/countries/CY/cities/Nicosia> rdf:type :City ;
   :cityIn <http://abc/mondial/10/countries/CY> ;
   :name 'Nicosia';
     :population 161100;
     :longitude 33.2;
     :latitude 35.4  . 
 <http://abc/mondial/10/continents/Europe> rdf:type :Continent ;
   :name 'Europe';
     :area 9562488 .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/AL> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/GR> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/MK> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/SRB> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/MNE> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/KOS> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/AND> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/F> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/E> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/A> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/CZ> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/D> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/H> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/I> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/FL> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/SK> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/SLO> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/CH> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/BY> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/LV> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/LT> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/PL> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/UA> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 20 ;
        :EncompassedArea <http://abc/mondial/10/countries/R> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/B> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/L> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/NL> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/BIH> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/HR> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/BG> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/RO> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 5 ;
        :EncompassedArea <http://abc/mondial/10/countries/TR> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/DK> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/EW> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/FARX> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/SF> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/N> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/S> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/MC> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/GBZ> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/GBG> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/V> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/IS> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/IRL> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/RSM> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/GBJ> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/M> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/GBM> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/MD> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/P> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/SVAX> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/GB> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Encompassed; 
        :percent 100 ;
        :EncompassedArea <http://abc/mondial/10/countries/CY> ;
        :encompassedBy <http://abc/mondial/10/continents/Europe>] .
 [ rdf:type :Border ; :length 282; 
    :bordering <http://abc/mondial/10/countries/AL> , <http://abc/mondial/10/countries/GR>] .
 [ rdf:type :Border ; :length 151; 
    :bordering <http://abc/mondial/10/countries/AL> , <http://abc/mondial/10/countries/MK>] .
 [ rdf:type :Border ; :length 172; 
    :bordering <http://abc/mondial/10/countries/AL> , <http://abc/mondial/10/countries/MNE>] .
 [ rdf:type :Border ; :length 112; 
    :bordering <http://abc/mondial/10/countries/AL> , <http://abc/mondial/10/countries/KOS>] .
 [ rdf:type :Border ; :length 228; 
    :bordering <http://abc/mondial/10/countries/GR> , <http://abc/mondial/10/countries/MK>] .
 [ rdf:type :Border ; :length 206; 
    :bordering <http://abc/mondial/10/countries/GR> , <http://abc/mondial/10/countries/TR>] .
 [ rdf:type :Border ; :length 62; 
    :bordering <http://abc/mondial/10/countries/MK> , <http://abc/mondial/10/countries/SRB>] .
 [ rdf:type :Border ; :length 124; 
    :bordering <http://abc/mondial/10/countries/MNE> , <http://abc/mondial/10/countries/SRB>] .
 [ rdf:type :Border ; :length 79; 
    :bordering <http://abc/mondial/10/countries/KOS> , <http://abc/mondial/10/countries/MNE>] .
 [ rdf:type :Border ; :length 352; 
    :bordering <http://abc/mondial/10/countries/KOS> , <http://abc/mondial/10/countries/SRB>] .
 [ rdf:type :Border ; :length 159; 
    :bordering <http://abc/mondial/10/countries/KOS> , <http://abc/mondial/10/countries/MK>] .
 [ rdf:type :Border ; :length 60; 
    :bordering <http://abc/mondial/10/countries/AND> , <http://abc/mondial/10/countries/F>] .
 [ rdf:type :Border ; :length 65; 
    :bordering <http://abc/mondial/10/countries/AND> , <http://abc/mondial/10/countries/E>] .
 [ rdf:type :Border ; :length 488; 
    :bordering <http://abc/mondial/10/countries/F> , <http://abc/mondial/10/countries/I>] .
 [ rdf:type :Border ; :length 73; 
    :bordering <http://abc/mondial/10/countries/F> , <http://abc/mondial/10/countries/L>] .
 [ rdf:type :Border ; :length 4.4; 
    :bordering <http://abc/mondial/10/countries/F> , <http://abc/mondial/10/countries/MC>] .
 [ rdf:type :Border ; :length 623; 
    :bordering <http://abc/mondial/10/countries/E> , <http://abc/mondial/10/countries/F>] .
 [ rdf:type :Border ; :length 1.2; 
    :bordering <http://abc/mondial/10/countries/E> , <http://abc/mondial/10/countries/GBZ>] .
 [ rdf:type :Border ; :length 1214; 
    :bordering <http://abc/mondial/10/countries/E> , <http://abc/mondial/10/countries/P>] .
 [ rdf:type :Border ; :length 362; 
    :bordering <http://abc/mondial/10/countries/A> , <http://abc/mondial/10/countries/CZ>] .
 [ rdf:type :Border ; :length 784; 
    :bordering <http://abc/mondial/10/countries/A> , <http://abc/mondial/10/countries/D>] .
 [ rdf:type :Border ; :length 366; 
    :bordering <http://abc/mondial/10/countries/A> , <http://abc/mondial/10/countries/H>] .
 [ rdf:type :Border ; :length 430; 
    :bordering <http://abc/mondial/10/countries/A> , <http://abc/mondial/10/countries/I>] .
 [ rdf:type :Border ; :length 37; 
    :bordering <http://abc/mondial/10/countries/A> , <http://abc/mondial/10/countries/FL>] .
 [ rdf:type :Border ; :length 91; 
    :bordering <http://abc/mondial/10/countries/A> , <http://abc/mondial/10/countries/SK>] .
 [ rdf:type :Border ; :length 324; 
    :bordering <http://abc/mondial/10/countries/A> , <http://abc/mondial/10/countries/SLO>] .
 [ rdf:type :Border ; :length 164; 
    :bordering <http://abc/mondial/10/countries/A> , <http://abc/mondial/10/countries/CH>] .
 [ rdf:type :Border ; :length 646; 
    :bordering <http://abc/mondial/10/countries/CZ> , <http://abc/mondial/10/countries/D>] .
 [ rdf:type :Border ; :length 215; 
    :bordering <http://abc/mondial/10/countries/CZ> , <http://abc/mondial/10/countries/SK>] .
 [ rdf:type :Border ; :length 658; 
    :bordering <http://abc/mondial/10/countries/CZ> , <http://abc/mondial/10/countries/PL>] .
 [ rdf:type :Border ; :length 451; 
    :bordering <http://abc/mondial/10/countries/D> , <http://abc/mondial/10/countries/F>] .
 [ rdf:type :Border ; :length 456; 
    :bordering <http://abc/mondial/10/countries/D> , <http://abc/mondial/10/countries/PL>] .
 [ rdf:type :Border ; :length 138; 
    :bordering <http://abc/mondial/10/countries/D> , <http://abc/mondial/10/countries/L>] .
 [ rdf:type :Border ; :length 577; 
    :bordering <http://abc/mondial/10/countries/D> , <http://abc/mondial/10/countries/NL>] .
 [ rdf:type :Border ; :length 68; 
    :bordering <http://abc/mondial/10/countries/D> , <http://abc/mondial/10/countries/DK>] .
 [ rdf:type :Border ; :length 151; 
    :bordering <http://abc/mondial/10/countries/H> , <http://abc/mondial/10/countries/SRB>] .
 [ rdf:type :Border ; :length 515; 
    :bordering <http://abc/mondial/10/countries/H> , <http://abc/mondial/10/countries/SK>] .
 [ rdf:type :Border ; :length 102; 
    :bordering <http://abc/mondial/10/countries/H> , <http://abc/mondial/10/countries/SLO>] .
 [ rdf:type :Border ; :length 103; 
    :bordering <http://abc/mondial/10/countries/H> , <http://abc/mondial/10/countries/UA>] .
 [ rdf:type :Border ; :length 329; 
    :bordering <http://abc/mondial/10/countries/H> , <http://abc/mondial/10/countries/HR>] .
 [ rdf:type :Border ; :length 443; 
    :bordering <http://abc/mondial/10/countries/H> , <http://abc/mondial/10/countries/RO>] .
 [ rdf:type :Border ; :length 235; 
    :bordering <http://abc/mondial/10/countries/I> , <http://abc/mondial/10/countries/SLO>] .
 [ rdf:type :Border ; :length 3.2; 
    :bordering <http://abc/mondial/10/countries/I> , <http://abc/mondial/10/countries/V>] .
 [ rdf:type :Border ; :length 39; 
    :bordering <http://abc/mondial/10/countries/I> , <http://abc/mondial/10/countries/RSM>] .
 [ rdf:type :Border ; :length 90; 
    :bordering <http://abc/mondial/10/countries/SK> , <http://abc/mondial/10/countries/UA>] .
 [ rdf:type :Border ; :length 573; 
    :bordering <http://abc/mondial/10/countries/CH> , <http://abc/mondial/10/countries/F>] .
 [ rdf:type :Border ; :length 334; 
    :bordering <http://abc/mondial/10/countries/CH> , <http://abc/mondial/10/countries/D>] .
 [ rdf:type :Border ; :length 740; 
    :bordering <http://abc/mondial/10/countries/CH> , <http://abc/mondial/10/countries/I>] .
 [ rdf:type :Border ; :length 41; 
    :bordering <http://abc/mondial/10/countries/CH> , <http://abc/mondial/10/countries/FL>] .
 [ rdf:type :Border ; :length 141; 
    :bordering <http://abc/mondial/10/countries/BY> , <http://abc/mondial/10/countries/LV>] .
 [ rdf:type :Border ; :length 502; 
    :bordering <http://abc/mondial/10/countries/BY> , <http://abc/mondial/10/countries/LT>] .
 [ rdf:type :Border ; :length 605; 
    :bordering <http://abc/mondial/10/countries/BY> , <http://abc/mondial/10/countries/PL>] .
 [ rdf:type :Border ; :length 891; 
    :bordering <http://abc/mondial/10/countries/BY> , <http://abc/mondial/10/countries/UA>] .
 [ rdf:type :Border ; :length 959; 
    :bordering <http://abc/mondial/10/countries/BY> , <http://abc/mondial/10/countries/R>] .
 [ rdf:type :Border ; :length 217; 
    :bordering <http://abc/mondial/10/countries/LV> , <http://abc/mondial/10/countries/R>] .
 [ rdf:type :Border ; :length 453; 
    :bordering <http://abc/mondial/10/countries/LT> , <http://abc/mondial/10/countries/LV>] .
 [ rdf:type :Border ; :length 91; 
    :bordering <http://abc/mondial/10/countries/LT> , <http://abc/mondial/10/countries/PL>] .
 [ rdf:type :Border ; :length 227; 
    :bordering <http://abc/mondial/10/countries/LT> , <http://abc/mondial/10/countries/R>] .
 [ rdf:type :Border ; :length 444; 
    :bordering <http://abc/mondial/10/countries/PL> , <http://abc/mondial/10/countries/SK>] .
 [ rdf:type :Border ; :length 428; 
    :bordering <http://abc/mondial/10/countries/PL> , <http://abc/mondial/10/countries/UA>] .
 [ rdf:type :Border ; :length 206; 
    :bordering <http://abc/mondial/10/countries/PL> , <http://abc/mondial/10/countries/R>] .
 [ rdf:type :Border ; :length 1576; 
    :bordering <http://abc/mondial/10/countries/R> , <http://abc/mondial/10/countries/UA>] .
 [ rdf:type :Border ; :length 1313; 
    :bordering <http://abc/mondial/10/countries/R> , <http://abc/mondial/10/countries/SF>] .
 [ rdf:type :Border ; :length 620; 
    :bordering <http://abc/mondial/10/countries/B> , <http://abc/mondial/10/countries/F>] .
 [ rdf:type :Border ; :length 167; 
    :bordering <http://abc/mondial/10/countries/B> , <http://abc/mondial/10/countries/D>] .
 [ rdf:type :Border ; :length 148; 
    :bordering <http://abc/mondial/10/countries/B> , <http://abc/mondial/10/countries/L>] .
 [ rdf:type :Border ; :length 450; 
    :bordering <http://abc/mondial/10/countries/B> , <http://abc/mondial/10/countries/NL>] .
 [ rdf:type :Border ; :length 302; 
    :bordering <http://abc/mondial/10/countries/BIH> , <http://abc/mondial/10/countries/SRB>] .
 [ rdf:type :Border ; :length 225; 
    :bordering <http://abc/mondial/10/countries/BIH> , <http://abc/mondial/10/countries/KOS>] .
 [ rdf:type :Border ; :length 932; 
    :bordering <http://abc/mondial/10/countries/BIH> , <http://abc/mondial/10/countries/HR>] .
 [ rdf:type :Border ; :length 241; 
    :bordering <http://abc/mondial/10/countries/HR> , <http://abc/mondial/10/countries/SRB>] .
 [ rdf:type :Border ; :length 25; 
    :bordering <http://abc/mondial/10/countries/HR> , <http://abc/mondial/10/countries/MNE>] .
 [ rdf:type :Border ; :length 546; 
    :bordering <http://abc/mondial/10/countries/HR> , <http://abc/mondial/10/countries/SLO>] .
 [ rdf:type :Border ; :length 494; 
    :bordering <http://abc/mondial/10/countries/BG> , <http://abc/mondial/10/countries/GR>] .
 [ rdf:type :Border ; :length 148; 
    :bordering <http://abc/mondial/10/countries/BG> , <http://abc/mondial/10/countries/MK>] .
 [ rdf:type :Border ; :length 318; 
    :bordering <http://abc/mondial/10/countries/BG> , <http://abc/mondial/10/countries/SRB>] .
 [ rdf:type :Border ; :length 608; 
    :bordering <http://abc/mondial/10/countries/BG> , <http://abc/mondial/10/countries/RO>] .
 [ rdf:type :Border ; :length 240; 
    :bordering <http://abc/mondial/10/countries/BG> , <http://abc/mondial/10/countries/TR>] .
 [ rdf:type :Border ; :length 476; 
    :bordering <http://abc/mondial/10/countries/RO> , <http://abc/mondial/10/countries/SRB>] .
 [ rdf:type :Border ; :length 531; 
    :bordering <http://abc/mondial/10/countries/RO> , <http://abc/mondial/10/countries/UA>] .
 [ rdf:type :Border ; :length 267; 
    :bordering <http://abc/mondial/10/countries/EW> , <http://abc/mondial/10/countries/LV>] .
 [ rdf:type :Border ; :length 290; 
    :bordering <http://abc/mondial/10/countries/EW> , <http://abc/mondial/10/countries/R>] .
 [ rdf:type :Border ; :length 167; 
    :bordering <http://abc/mondial/10/countries/N> , <http://abc/mondial/10/countries/R>] .
 [ rdf:type :Border ; :length 729; 
    :bordering <http://abc/mondial/10/countries/N> , <http://abc/mondial/10/countries/SF>] .
 [ rdf:type :Border ; :length 1619; 
    :bordering <http://abc/mondial/10/countries/N> , <http://abc/mondial/10/countries/S>] .
 [ rdf:type :Border ; :length 586; 
    :bordering <http://abc/mondial/10/countries/S> , <http://abc/mondial/10/countries/SF>] .
 [ rdf:type :Border ; :length 939; 
    :bordering <http://abc/mondial/10/countries/MD> , <http://abc/mondial/10/countries/UA>] .
 [ rdf:type :Border ; :length 450; 
    :bordering <http://abc/mondial/10/countries/MD> , <http://abc/mondial/10/countries/RO>] .
 [ rdf:type :Border ; :length 360; 
    :bordering <http://abc/mondial/10/countries/GB> , <http://abc/mondial/10/countries/IRL>] .
 <http://abc/mondial/10/countries/AL> :neighbor
   <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/countries/AL> :neighbor
   <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/countries/AL> :neighbor
   <http://abc/mondial/10/countries/MNE> .
 <http://abc/mondial/10/countries/AL> :neighbor
   <http://abc/mondial/10/countries/KOS> .
 <http://abc/mondial/10/countries/GR> :neighbor
   <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/countries/GR> :neighbor
   <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/countries/GR> :neighbor
   <http://abc/mondial/10/countries/BG> .
 <http://abc/mondial/10/countries/GR> :neighbor
   <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/countries/MK> :neighbor
   <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/countries/MK> :neighbor
   <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/countries/MK> :neighbor
   <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/countries/MK> :neighbor
   <http://abc/mondial/10/countries/KOS> .
 <http://abc/mondial/10/countries/MK> :neighbor
   <http://abc/mondial/10/countries/BG> .
 <http://abc/mondial/10/countries/SRB> :neighbor
   <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/countries/SRB> :neighbor
   <http://abc/mondial/10/countries/MNE> .
 <http://abc/mondial/10/countries/SRB> :neighbor
   <http://abc/mondial/10/countries/KOS> .
 <http://abc/mondial/10/countries/SRB> :neighbor
   <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/countries/SRB> :neighbor
   <http://abc/mondial/10/countries/BIH> .
 <http://abc/mondial/10/countries/SRB> :neighbor
   <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/countries/SRB> :neighbor
   <http://abc/mondial/10/countries/BG> .
 <http://abc/mondial/10/countries/SRB> :neighbor
   <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/countries/MNE> :neighbor
   <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/countries/MNE> :neighbor
   <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/countries/MNE> :neighbor
   <http://abc/mondial/10/countries/KOS> .
 <http://abc/mondial/10/countries/MNE> :neighbor
   <http://abc/mondial/10/countries/BIH> .
 <http://abc/mondial/10/countries/MNE> :neighbor
   <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/countries/KOS> :neighbor
   <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/countries/KOS> :neighbor
   <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/countries/KOS> :neighbor
   <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/countries/KOS> :neighbor
   <http://abc/mondial/10/countries/MNE> .
 <http://abc/mondial/10/countries/AND> :neighbor
   <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/countries/AND> :neighbor
   <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/countries/F> :neighbor
   <http://abc/mondial/10/countries/AND> .
 <http://abc/mondial/10/countries/F> :neighbor
   <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/countries/F> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/F> :neighbor
   <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/countries/F> :neighbor
   <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/countries/F> :neighbor
   <http://abc/mondial/10/countries/B> .
 <http://abc/mondial/10/countries/F> :neighbor
   <http://abc/mondial/10/countries/L> .
 <http://abc/mondial/10/countries/F> :neighbor
   <http://abc/mondial/10/countries/MC> .
 <http://abc/mondial/10/countries/E> :neighbor
   <http://abc/mondial/10/countries/AND> .
 <http://abc/mondial/10/countries/E> :neighbor
   <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/countries/E> :neighbor
   <http://abc/mondial/10/countries/GBZ> .
 <http://abc/mondial/10/countries/E> :neighbor
   <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/countries/A> :neighbor
   <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/countries/A> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/A> :neighbor
   <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/countries/A> :neighbor
   <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/countries/A> :neighbor
   <http://abc/mondial/10/countries/FL> .
 <http://abc/mondial/10/countries/A> :neighbor
   <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/countries/A> :neighbor
   <http://abc/mondial/10/countries/SLO> .
 <http://abc/mondial/10/countries/A> :neighbor
   <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/countries/CZ> :neighbor
   <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/countries/CZ> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/CZ> :neighbor
   <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/countries/CZ> :neighbor
   <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/B> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/L> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/countries/D> :neighbor
   <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/countries/H> :neighbor
   <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/countries/H> :neighbor
   <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/countries/H> :neighbor
   <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/countries/H> :neighbor
   <http://abc/mondial/10/countries/SLO> .
 <http://abc/mondial/10/countries/H> :neighbor
   <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/countries/H> :neighbor
   <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/countries/H> :neighbor
   <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/countries/I> :neighbor
   <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/countries/I> :neighbor
   <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/countries/I> :neighbor
   <http://abc/mondial/10/countries/SLO> .
 <http://abc/mondial/10/countries/I> :neighbor
   <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/countries/I> :neighbor
   <http://abc/mondial/10/countries/V> .
 <http://abc/mondial/10/countries/I> :neighbor
   <http://abc/mondial/10/countries/RSM> .
 <http://abc/mondial/10/countries/FL> :neighbor
   <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/countries/FL> :neighbor
   <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/countries/SK> :neighbor
   <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/countries/SK> :neighbor
   <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/countries/SK> :neighbor
   <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/countries/SK> :neighbor
   <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/countries/SK> :neighbor
   <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/countries/SLO> :neighbor
   <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/countries/SLO> :neighbor
   <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/countries/SLO> :neighbor
   <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/countries/SLO> :neighbor
   <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/countries/CH> :neighbor
   <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/countries/CH> :neighbor
   <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/countries/CH> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/CH> :neighbor
   <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/countries/CH> :neighbor
   <http://abc/mondial/10/countries/FL> .
 <http://abc/mondial/10/countries/BY> :neighbor
   <http://abc/mondial/10/countries/LV> .
 <http://abc/mondial/10/countries/BY> :neighbor
   <http://abc/mondial/10/countries/LT> .
 <http://abc/mondial/10/countries/BY> :neighbor
   <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/countries/BY> :neighbor
   <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/countries/BY> :neighbor
   <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/countries/LV> :neighbor
   <http://abc/mondial/10/countries/BY> .
 <http://abc/mondial/10/countries/LV> :neighbor
   <http://abc/mondial/10/countries/LT> .
 <http://abc/mondial/10/countries/LV> :neighbor
   <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/countries/LV> :neighbor
   <http://abc/mondial/10/countries/EW> .
 <http://abc/mondial/10/countries/LT> :neighbor
   <http://abc/mondial/10/countries/BY> .
 <http://abc/mondial/10/countries/LT> :neighbor
   <http://abc/mondial/10/countries/LV> .
 <http://abc/mondial/10/countries/LT> :neighbor
   <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/countries/LT> :neighbor
   <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/countries/PL> :neighbor
   <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/countries/PL> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/PL> :neighbor
   <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/countries/PL> :neighbor
   <http://abc/mondial/10/countries/BY> .
 <http://abc/mondial/10/countries/PL> :neighbor
   <http://abc/mondial/10/countries/LT> .
 <http://abc/mondial/10/countries/PL> :neighbor
   <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/countries/PL> :neighbor
   <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/countries/UA> :neighbor
   <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/countries/UA> :neighbor
   <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/countries/UA> :neighbor
   <http://abc/mondial/10/countries/BY> .
 <http://abc/mondial/10/countries/UA> :neighbor
   <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/countries/UA> :neighbor
   <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/countries/UA> :neighbor
   <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/countries/UA> :neighbor
   <http://abc/mondial/10/countries/MD> .
 <http://abc/mondial/10/countries/R> :neighbor
   <http://abc/mondial/10/countries/BY> .
 <http://abc/mondial/10/countries/R> :neighbor
   <http://abc/mondial/10/countries/LV> .
 <http://abc/mondial/10/countries/R> :neighbor
   <http://abc/mondial/10/countries/LT> .
 <http://abc/mondial/10/countries/R> :neighbor
   <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/countries/R> :neighbor
   <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/countries/R> :neighbor
   <http://abc/mondial/10/countries/EW> .
 <http://abc/mondial/10/countries/R> :neighbor
   <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/countries/R> :neighbor
   <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/countries/B> :neighbor
   <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/countries/B> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/B> :neighbor
   <http://abc/mondial/10/countries/L> .
 <http://abc/mondial/10/countries/B> :neighbor
   <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/countries/L> :neighbor
   <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/countries/L> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/L> :neighbor
   <http://abc/mondial/10/countries/B> .
 <http://abc/mondial/10/countries/NL> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/NL> :neighbor
   <http://abc/mondial/10/countries/B> .
 <http://abc/mondial/10/countries/BIH> :neighbor
   <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/countries/BIH> :neighbor
   <http://abc/mondial/10/countries/KOS> .
 <http://abc/mondial/10/countries/BIH> :neighbor
   <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/countries/HR> :neighbor
   <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/countries/HR> :neighbor
   <http://abc/mondial/10/countries/MNE> .
 <http://abc/mondial/10/countries/HR> :neighbor
   <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/countries/HR> :neighbor
   <http://abc/mondial/10/countries/SLO> .
 <http://abc/mondial/10/countries/HR> :neighbor
   <http://abc/mondial/10/countries/BIH> .
 <http://abc/mondial/10/countries/BG> :neighbor
   <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/countries/BG> :neighbor
   <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/countries/BG> :neighbor
   <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/countries/BG> :neighbor
   <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/countries/BG> :neighbor
   <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/countries/RO> :neighbor
   <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/countries/RO> :neighbor
   <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/countries/RO> :neighbor
   <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/countries/RO> :neighbor
   <http://abc/mondial/10/countries/BG> .
 <http://abc/mondial/10/countries/RO> :neighbor
   <http://abc/mondial/10/countries/MD> .
 <http://abc/mondial/10/countries/TR> :neighbor
   <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/countries/TR> :neighbor
   <http://abc/mondial/10/countries/BG> .
 <http://abc/mondial/10/countries/DK> :neighbor
   <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/countries/EW> :neighbor
   <http://abc/mondial/10/countries/LV> .
 <http://abc/mondial/10/countries/EW> :neighbor
   <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/countries/SF> :neighbor
   <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/countries/SF> :neighbor
   <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/countries/SF> :neighbor
   <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/countries/N> :neighbor
   <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/countries/N> :neighbor
   <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/countries/N> :neighbor
   <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/countries/S> :neighbor
   <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/countries/S> :neighbor
   <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/countries/MC> :neighbor
   <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/countries/GBZ> :neighbor
   <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/countries/V> :neighbor
   <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/countries/RSM> :neighbor
   <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/countries/MD> :neighbor
   <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/countries/MD> :neighbor
   <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/countries/P> :neighbor
   <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/countries/GB> :neighbor
   <http://abc/mondial/10/countries/IRL> .
 <http://abc/mondial/10/countries/FARX> :dependentOf
   <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/countries/GBZ> :dependentOf
   <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/countries/GBG> :dependentOf
   <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/countries/GBJ> :dependentOf
   <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/countries/GBM> :dependentOf
   <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/countries/SVAX> :dependentOf
   <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/organizations/AfDB> rdf:type :Organization ;
   :name 'African Development Bank' ;
   :abbrev 'AfDB';
     :established '1963-08-04' .
 <http://abc/mondial/10/organizations/ACCT> rdf:type :Organization ;
   :name 'Agency for Cultural and Technical Cooperation' ;
   :abbrev 'ACCT';
     :established '1970-03-21';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> .
 <http://abc/mondial/10/organizations/AG> rdf:type :Organization ;
   :name 'Andean Group' ;
   :abbrev 'AG';
     :established '1969-05-26' .
 <http://abc/mondial/10/organizations/AsDB> rdf:type :Organization ;
   :name 'Asian Development Bank' ;
   :abbrev 'AsDB';
     :established '1966-12-19' .
 <http://abc/mondial/10/organizations/BIS> rdf:type :Organization ;
   :name 'Bank for International Settlements' ;
   :abbrev 'BIS';
     :established '1930-01-20';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/BS/cities/Basel> .
 <http://abc/mondial/10/organizations/Benelux> rdf:type :Organization ;
   :name 'Benelux Economic Union' ;
   :abbrev 'Benelux';
     :established '1958-02-03';
     :hasHeadq <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> .
 <http://abc/mondial/10/organizations/BSEC> rdf:type :Organization ;
   :name 'Black Sea Economic Cooperation Zone' ;
   :abbrev 'BSEC';
     :established '1992-06-25' .
 <http://abc/mondial/10/organizations/CDB> rdf:type :Organization ;
   :name 'Caribbean Development Bank' ;
   :abbrev 'CDB';
     :established '1969-10-18' .
 <http://abc/mondial/10/organizations/BDEAC> rdf:type :Organization ;
   :name 'Central African States Development Bank' ;
   :abbrev 'BDEAC';
     :established '1975-12-03' .
 <http://abc/mondial/10/organizations/CEI> rdf:type :Organization ;
   :name 'Central European Initiative' ;
   :abbrev 'CEI';
     :established '1991-07-27';
     :hasHeadq <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-/cities/Budapest> .
 <http://abc/mondial/10/organizations/C> rdf:type :Organization ;
   :name 'Commonwealth' ;
   :abbrev 'C';
     :established '1931-12-31';
     :hasHeadq <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London> .
 <http://abc/mondial/10/organizations/CIS> rdf:type :Organization ;
   :name 'Commonwealth of Independent States' ;
   :abbrev 'CIS';
     :established '1991-12-08';
     :hasHeadq <http://abc/mondial/10/countries/BY/cities/Minsk> .
 <http://abc/mondial/10/organizations/CE> rdf:type :Organization ;
   :name 'Council of Europe' ;
   :abbrev 'CE';
     :established '1949-05-05';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/Alsace/cities/Strasbourg> .
 <http://abc/mondial/10/organizations/CBSS> rdf:type :Organization ;
   :name 'Council of the Baltic Sea States' ;
   :abbrev 'CBSS';
     :established '1992-03-05' .
 <http://abc/mondial/10/organizations/CCC> rdf:type :Organization ;
   :name 'Customs Cooperation Council' ;
   :abbrev 'CCC';
     :established '1950-12-15';
     :hasHeadq <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> .
 <http://abc/mondial/10/organizations/ESCAP> rdf:type :Organization ;
   :name 'Economic and Social Commission for Asia and the Pacific' ;
   :abbrev 'ESCAP';
     :established '1947-03-28' .
 <http://abc/mondial/10/organizations/ECA> rdf:type :Organization ;
   :name 'Economic Commission for Africa' ;
   :abbrev 'ECA';
     :established '1958-04-29' .
 <http://abc/mondial/10/organizations/ECE> rdf:type :Organization ;
   :name 'Economic Commission for Europe' ;
   :abbrev 'ECE';
     :established '1947-03-28';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/ECLAC> rdf:type :Organization ;
   :name 'Economic Commission for Latin America and the Caribbean' ;
   :abbrev 'ECLAC';
     :established '1948-02-25' .
 <http://abc/mondial/10/organizations/ECO> rdf:type :Organization ;
   :name 'Economic Cooperation Organization' ;
   :abbrev 'ECO';
     :established '1985-01-01' .
 <http://abc/mondial/10/organizations/EBRD> rdf:type :Organization ;
   :name 'European Bank for Reconstruction and Development' ;
   :abbrev 'EBRD';
     :established '1991-04-15';
     :hasHeadq <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London> .
 <http://abc/mondial/10/organizations/EFTA> rdf:type :Organization ;
   :name 'European Free Trade Association' ;
   :abbrev 'EFTA';
     :established '1960-01-04';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/EIB> rdf:type :Organization ;
   :name 'European Investment Bank' ;
   :abbrev 'EIB';
     :established '1957-03-25';
     :hasHeadq <http://abc/mondial/10/countries/L/cities/Luxembourg> .
 <http://abc/mondial/10/organizations/CERN> rdf:type :Organization ;
   :name 'European Organization for Nuclear Research' ;
   :abbrev 'CERN';
     :established '1953-07-01';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/ESA> rdf:type :Organization ;
   :name 'European Space Agency' ;
   :abbrev 'ESA';
     :established '1973-07-31';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> .
 <http://abc/mondial/10/organizations/EU> rdf:type :Organization ;
   :name 'European Union' ;
   :abbrev 'EU';
     :established '1992-02-07';
     :hasHeadq <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> .
 <http://abc/mondial/10/organizations/FAO> rdf:type :Organization ;
   :name 'Food and Agriculture Organization' ;
   :abbrev 'FAO';
     :established '1945-10-16';
     :hasHeadq <http://abc/mondial/10/countries/I/provinces/Lazio/cities/Rome> .
 <http://abc/mondial/10/organizations/FZ> rdf:type :Organization ;
   :name 'Franc Zone' ;
   :abbrev 'FZ';
     :established '1945-12-20';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> .
 <http://abc/mondial/10/organizations/G-5> rdf:type :Organization ;
   :name 'Group of 5' ;
   :abbrev 'G-5';
     :established '1985-09-22' .
 <http://abc/mondial/10/organizations/G-6> rdf:type :Organization ;
   :name 'Group of 6' ;
   :abbrev 'G-6';
     :established '1984-05-22' .
 <http://abc/mondial/10/organizations/G-7> rdf:type :Organization ;
   :name 'Group of 7' ;
   :abbrev 'G-7';
     :established '1985-09-22' .
 <http://abc/mondial/10/organizations/G-8> rdf:type :Organization ;
   :name 'Group of 8' ;
   :abbrev 'G-8';
     :established '1975-10-01' .
 <http://abc/mondial/10/organizations/G-9> rdf:type :Organization ;
   :name 'Group of 9' ;
   :abbrev 'G-9' .
 <http://abc/mondial/10/organizations/G-10> rdf:type :Organization ;
   :name 'Group of 10' ;
   :abbrev 'G-10';
     :established '1962-10-01';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> .
 <http://abc/mondial/10/organizations/G-77> rdf:type :Organization ;
   :name 'Group of 77' ;
   :abbrev 'G-77';
     :established '1967-10-01' .
 <http://abc/mondial/10/organizations/IADB> rdf:type :Organization ;
   :name 'Inter-American Development Bank' ;
   :abbrev 'IADB';
     :established '1959-04-08' .
 <http://abc/mondial/10/organizations/IAEA> rdf:type :Organization ;
   :name 'International Atomic Energy Agency' ;
   :abbrev 'IAEA';
     :established '1956-10-26';
     :hasHeadq <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna> .
 <http://abc/mondial/10/organizations/IBRD> rdf:type :Organization ;
   :name 'International Bank for Reconstruction and Development' ;
   :abbrev 'IBRD';
     :established '1944-07-22' .
 <http://abc/mondial/10/organizations/ICC> rdf:type :Organization ;
   :name 'International Chamber of Commerce' ;
   :abbrev 'ICC';
     :established '1919-01-01';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> .
 <http://abc/mondial/10/organizations/ICAO> rdf:type :Organization ;
   :name 'International Civil Aviation Organization' ;
   :abbrev 'ICAO';
     :established '1944-12-07' .
 <http://abc/mondial/10/organizations/ICFTU> rdf:type :Organization ;
   :name 'International Confederation of Free Trade Unions' ;
   :abbrev 'ICFTU';
     :established '1949-12-01';
     :hasHeadq <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> .
 <http://abc/mondial/10/organizations/Interpol> rdf:type :Organization ;
   :name 'International Criminal Police Organization' ;
   :abbrev 'Interpol';
     :established '1956-06-13';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Lyon> .
 <http://abc/mondial/10/organizations/IDA> rdf:type :Organization ;
   :name 'International Development Association' ;
   :abbrev 'IDA';
     :established '1960-01-26' .
 <http://abc/mondial/10/organizations/IEA> rdf:type :Organization ;
   :name 'International Energy Agency' ;
   :abbrev 'IEA';
     :established '1974-11-15';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> .
 <http://abc/mondial/10/organizations/IFRCS> rdf:type :Organization ;
   :name 'International Federation of Red Cross and Red Crescent Societies' ;
   :abbrev 'IFRCS';
     :established '1919-05-05';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/IFC> rdf:type :Organization ;
   :name 'International Finance Corporation' ;
   :abbrev 'IFC';
     :established '1955-05-25' .
 <http://abc/mondial/10/organizations/IFAD> rdf:type :Organization ;
   :name 'International Fund for Agricultural Development' ;
   :abbrev 'IFAD';
     :established '1974-11-01';
     :hasHeadq <http://abc/mondial/10/countries/I/provinces/Lazio/cities/Rome> .
 <http://abc/mondial/10/organizations/ILO> rdf:type :Organization ;
   :name 'International Labor Organization' ;
   :abbrev 'ILO';
     :established '1919-04-11';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/IMO> rdf:type :Organization ;
   :name 'International Maritime Organization' ;
   :abbrev 'IMO';
     :established '1958-03-17';
     :hasHeadq <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London> .
 <http://abc/mondial/10/organizations/Inmarsat> rdf:type :Organization ;
   :name 'International Mobile Satellite Organization' ;
   :abbrev 'Inmarsat';
     :established '1976-09-03';
     :hasHeadq <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London> .
 <http://abc/mondial/10/organizations/IMF> rdf:type :Organization ;
   :name 'International Monetary Fund' ;
   :abbrev 'IMF';
     :established '1944-07-22' .
 <http://abc/mondial/10/organizations/IOC> rdf:type :Organization ;
   :name 'International Olympic Committee' ;
   :abbrev 'IOC';
     :established '1894-06-23';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/VD/cities/Lausanne> .
 <http://abc/mondial/10/organizations/IOM> rdf:type :Organization ;
   :name 'International Organization for Migration' ;
   :abbrev 'IOM';
     :established '1951-12-05';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/ISO> rdf:type :Organization ;
   :name 'International Organization for Standardization' ;
   :abbrev 'ISO';
     :established '1947-02-01';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/ICRM> rdf:type :Organization ;
   :name 'International Red Cross and Red Crescent Movement' ;
   :abbrev 'ICRM';
     :established '1928-01-01';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/ITU> rdf:type :Organization ;
   :name 'International Telecommunication Union' ;
   :abbrev 'ITU';
     :established '1932-12-09';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/Intelsat> rdf:type :Organization ;
   :name 'International Telecommunications Satellite Organization' ;
   :abbrev 'Intelsat';
     :established '1971-08-20' .
 <http://abc/mondial/10/organizations/IDB> rdf:type :Organization ;
   :name 'Islamic Development Bank' ;
   :abbrev 'IDB';
     :established '1973-12-15' .
 <http://abc/mondial/10/organizations/LAIA> rdf:type :Organization ;
   :name 'Latin American Integration Association' ;
   :abbrev 'LAIA';
     :established '1980-08-12' .
 <http://abc/mondial/10/organizations/MTCR> rdf:type :Organization ;
   :name 'Missile Technology Control Regime' ;
   :abbrev 'MTCR';
     :established '1987-04-16' .
 <http://abc/mondial/10/organizations/NAM> rdf:type :Organization ;
   :name 'Nonaligned Movement' ;
   :abbrev 'NAM';
     :established '1961-09-01' .
 <http://abc/mondial/10/organizations/NC> rdf:type :Organization ;
   :name 'Nordic Council' ;
   :abbrev 'NC';
     :established '1952-03-16';
     :hasHeadq <http://abc/mondial/10/countries/S/provinces/Stockholm/cities/Stockholm> .
 <http://abc/mondial/10/organizations/NIB> rdf:type :Organization ;
   :name 'Nordic Investment Bank' ;
   :abbrev 'NIB';
     :established '1975-12-04';
     :hasHeadq <http://abc/mondial/10/countries/SF/provinces/Uusimaa/cities/Helsinki> .
 <http://abc/mondial/10/organizations/ANC> rdf:type :Organization ;
   :name 'North Atlantic Cooperation Council' ;
   :abbrev 'ANC';
     :established '1991-11-08';
     :hasHeadq <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> .
 <http://abc/mondial/10/organizations/NATO> rdf:type :Organization ;
   :name 'North Atlantic Treaty Organization' ;
   :abbrev 'NATO';
     :established '1949-09-17';
     :hasHeadq <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> .
 <http://abc/mondial/10/organizations/EN> rdf:type :Organization ;
   :name 'Nuclear Energy Agency' ;
   :abbrev 'EN';
     :established '1958-01-01' .
 <http://abc/mondial/10/organizations/NSG> rdf:type :Organization ;
   :name 'Nuclear Suppliers Group' ;
   :abbrev 'NSG';
     :hasHeadq <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna> .
 <http://abc/mondial/10/organizations/OECD> rdf:type :Organization ;
   :name 'Organization for Economic Cooperation and Development' ;
   :abbrev 'OECD';
     :established '1960-12-14';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> .
 <http://abc/mondial/10/organizations/OSCE> rdf:type :Organization ;
   :name 'Organization for Security and Cooperation in Europe' ;
   :abbrev 'OSCE';
     :established '1995-01-01';
     :hasHeadq <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna> .
 <http://abc/mondial/10/organizations/OAS> rdf:type :Organization ;
   :name 'Organization of American States' ;
   :abbrev 'OAS';
     :established '1948-04-30' .
 <http://abc/mondial/10/organizations/OIC> rdf:type :Organization ;
   :name 'Organization of the Islamic Conference' ;
   :abbrev 'OIC';
     :established '1969-09-22' .
 <http://abc/mondial/10/organizations/PFP> rdf:type :Organization ;
   :name 'Partnership for Peace' ;
   :abbrev 'PFP';
     :established '1994-01-10' .
 <http://abc/mondial/10/organizations/PCA> rdf:type :Organization ;
   :name 'Permanent Court of Arbitration' ;
   :abbrev 'PCA';
     :established '1899-07-29' .
 <http://abc/mondial/10/organizations/SPC> rdf:type :Organization ;
   :name 'South Pacific Commission' ;
   :abbrev 'SPC';
     :established '1947-02-06' .
 <http://abc/mondial/10/organizations/UN> rdf:type :Organization ;
   :name 'United Nations' ;
   :abbrev 'UN';
     :established '1945-06-26' .
 <http://abc/mondial/10/organizations/UNAVEMIII> rdf:type :Organization ;
   :name 'United Nations Angola Verification Mission' ;
   :abbrev 'UNAVEM III';
     :established '1988-12-20' .
 <http://abc/mondial/10/organizations/UNAMIR> rdf:type :Organization ;
   :name 'United Nations Assistance Mission for Rwanda' ;
   :abbrev 'UNAMIR';
     :established '1993-10-05' .
 <http://abc/mondial/10/organizations/UNCTAD> rdf:type :Organization ;
   :name 'United Nations Conference on Trade and Development' ;
   :abbrev 'UNCTAD';
     :established '1964-12-30';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/UNCRO> rdf:type :Organization ;
   :name 'United Nations Confidence Restoration Operation in Croatia' ;
   :abbrev 'UNCRO';
     :established '1995-03-31' .
 <http://abc/mondial/10/organizations/UNDOF> rdf:type :Organization ;
   :name 'United Nations Disengagement Observer Force' ;
   :abbrev 'UNDOF';
     :established '1974-05-31' .
 <http://abc/mondial/10/organizations/UNESCO> rdf:type :Organization ;
   :name 'United Nations Educational, Scientific, and Cultural Organization' ;
   :abbrev 'UNESCO';
     :established '1945-11-16';
     :hasHeadq <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris> .
 <http://abc/mondial/10/organizations/UNFICYP> rdf:type :Organization ;
   :name 'United Nations Force in Cyprus' ;
   :abbrev 'UNFICYP';
     :established '1964-03-04' .
 <http://abc/mondial/10/organizations/UNIDO> rdf:type :Organization ;
   :name 'United Nations Industrial Development Organization' ;
   :abbrev 'UNIDO';
     :established '1966-11-17';
     :hasHeadq <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna> .
 <http://abc/mondial/10/organizations/UNITAR> rdf:type :Organization ;
   :name 'United Nations Institute for Training and Research' ;
   :abbrev 'UNITAR';
     :established '1963-12-11' .
 <http://abc/mondial/10/organizations/UNIFIL> rdf:type :Organization ;
   :name 'United Nations Interim Force in Lebanon' ;
   :abbrev 'UNIFIL';
     :established '1978-03-19' .
 <http://abc/mondial/10/organizations/UNIKOM> rdf:type :Organization ;
   :name 'United Nations Iraq-Kuwait Observation Mission' ;
   :abbrev 'UNIKOM';
     :established '1991-04-09' .
 <http://abc/mondial/10/organizations/UNMOGIP> rdf:type :Organization ;
   :name 'United Nations Military Observer Group in India and Pakistan' ;
   :abbrev 'UNMOGIP';
     :established '1948-08-13' .
 <http://abc/mondial/10/organizations/MINURSO> rdf:type :Organization ;
   :name 'United Nations Mission for the Referendum in Western Sahara' ;
   :abbrev 'MINURSO';
     :established '1991-04-29' .
 <http://abc/mondial/10/organizations/UNMIH> rdf:type :Organization ;
   :name 'United Nations Mission in Haiti' ;
   :abbrev 'UNMIH';
     :established '1993-09-23' .
 <http://abc/mondial/10/organizations/UNMOT> rdf:type :Organization ;
   :name 'United Nations Mission of Observers in Tajikistan' ;
   :abbrev 'UNMOT';
     :established '1994-12-16' .
 <http://abc/mondial/10/organizations/UNOMIG> rdf:type :Organization ;
   :name 'United Nations Observer Mission in Georgia' ;
   :abbrev 'UNOMIG' .
 <http://abc/mondial/10/organizations/UNOMIL> rdf:type :Organization ;
   :name 'United Nations Observer Mission in Liberia' ;
   :abbrev 'UNOMIL';
     :established '1993-09-22' .
 <http://abc/mondial/10/organizations/UNHCR> rdf:type :Organization ;
   :name 'United Nations Office of the High Commissioner for Refugees' ;
   :abbrev 'UNHCR';
     :established '1949-12-03';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/UNPREDEP> rdf:type :Organization ;
   :name 'United Nations Preventive Deployment Force' ;
   :abbrev 'UNPREDEP';
     :established '1995-03-31' .
 <http://abc/mondial/10/organizations/UNPROFOR> rdf:type :Organization ;
   :name 'United Nations Protection Force' ;
   :abbrev 'UNPROFOR';
     :established '1992-02-28' .
 <http://abc/mondial/10/organizations/UNRWA> rdf:type :Organization ;
   :name 'United Nations Relief and Works Agency for Palestine Refugees in the Near East' ;
   :abbrev 'UNRWA';
     :established '1949-12-08';
     :hasHeadq <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna> .
 <http://abc/mondial/10/organizations/UNTSO> rdf:type :Organization ;
   :name 'United Nations Truce Supervision Organization' ;
   :abbrev 'UNTSO';
     :established '1948-05-01' .
 <http://abc/mondial/10/organizations/UNU> rdf:type :Organization ;
   :name 'United Nations University' ;
   :abbrev 'UNU';
     :established '1973-12-06' .
 <http://abc/mondial/10/organizations/UPU> rdf:type :Organization ;
   :name 'Universal Postal Union' ;
   :abbrev 'UPU';
     :established '1874-10-09';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/BE/cities/Bern> .
 <http://abc/mondial/10/organizations/WEU> rdf:type :Organization ;
   :name 'Western European Union' ;
   :abbrev 'WEU';
     :established '1954-10-23';
     :hasHeadq <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> .
 <http://abc/mondial/10/organizations/WCL> rdf:type :Organization ;
   :name 'World Confederation of Labor' ;
   :abbrev 'WCL';
     :established '1920-06-19';
     :hasHeadq <http://abc/mondial/10/countries/B/provinces/Brabant/cities/Brussels> .
 <http://abc/mondial/10/organizations/WFTU> rdf:type :Organization ;
   :name 'World Federation of Trade Unions' ;
   :abbrev 'WFTU';
     :established '1945-10-03';
     :hasHeadq <http://abc/mondial/10/countries/CZ/provinces/Praha/cities/Prague> .
 <http://abc/mondial/10/organizations/WHO> rdf:type :Organization ;
   :name 'World Health Organization' ;
   :abbrev 'WHO';
     :established '1946-07-22';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/WIPO> rdf:type :Organization ;
   :name 'World Intellectual Property Organization' ;
   :abbrev 'WIPO';
     :established '1967-07-14';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/WMO> rdf:type :Organization ;
   :name 'World Meteorological Organization' ;
   :abbrev 'WMO';
     :established '1947-10-11';
     :hasHeadq <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva> .
 <http://abc/mondial/10/organizations/WToO> rdf:type :Organization ;
   :name 'World Tourism Organization' ;
   :abbrev 'WToO';
     :established '1975-01-02';
     :hasHeadq <http://abc/mondial/10/countries/E/provinces/Madrid/cities/Madrid> .
 <http://abc/mondial/10/organizations/WTrO> rdf:type :Organization ;
   :name 'World Trade Organization' ;
   :abbrev 'WTrO';
     :established '1994-04-15' .
 <http://abc/mondial/10/organizations/ZC> rdf:type :Organization ;
   :name 'Zangger Committee' ;
   :abbrev 'ZC' .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/AfDB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ACCT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ACCT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ACCT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ACCT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ACCT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/ACCT>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/AG>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/AsDB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/BIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/Benelux>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/Benelux>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/Benelux>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/BSEC>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/CDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/CDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/CDB>] .
 [ rdf:type :Membership; 
    :type 'nonregional member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/CDB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/BDEAC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/BDEAC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/CEI>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/C>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/C>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/C>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/CIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/CIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/CIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/CIS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/CE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/CBSS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/CCC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ESCAP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ESCAP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ESCAP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ESCAP>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ECA>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ECA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/ECE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ECLAC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ECLAC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ECLAC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ECLAC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ECLAC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ECLAC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ECO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/EBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/EFTA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/EFTA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/EFTA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/EFTA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/EIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/CERN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ESA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'membership applicant' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'membership applicant' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'membership applicant' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/EU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/FAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/FZ>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/G-5>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/G-5>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/G-5>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/G-6>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/G-6>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/G-7>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/G-7>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/G-7>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/G-7>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/G-8>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/G-8>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/G-8>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/G-8>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/G-8>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/G-9>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/G-10>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/G-10>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/G-10>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/G-10>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/G-10>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/G-10>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/G-10>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/G-10>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/G-77>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/G-77>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/G-77>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IADB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IAEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IBRD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/ICC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/ICAO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/ICFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'subbureau' ;
    :ofMember <http://abc/mondial/10/countries/GBZ> ;
    :inOrganization <http://abc/mondial/10/organizations/Interpol>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part I' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'Part II' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IDA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IEA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IFRCS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IFC>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category I' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'Category III' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IFAD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/ILO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/Inmarsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IMF>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'National Olympic Committee' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IOC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/IOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'correspondent member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'correspondent member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'correspondent member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/ISO>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'National Society' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ICRM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/ITU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'nonsignatory user' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/Intelsat>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/IDB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/IDB>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/LAIA>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/LAIA>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/LAIA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/MTCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'guest' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/NAM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/NC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/NC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/NC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/NC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/NC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/NIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/NIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/NIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/NIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/NIB>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ANC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/NATO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/EN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/NSG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/OECD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/OSCE>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/OAS>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/OIC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/OIC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/PFP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/PCA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/SPC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/SPC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/UN>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAVEMIII>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAMIR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAMIR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAMIR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNAMIR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCTAD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCTAD>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNCRO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNDOF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNDOF>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/UNESCO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNFICYP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNFICYP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNFICYP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNFICYP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIDO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNITAR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIFIL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIFIL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIFIL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIFIL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIFIL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIFIL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNIKOM>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOGIP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOGIP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOGIP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOGIP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOGIP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/MINURSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMIH>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMIH>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMIH>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMIH>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMIH>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNMOT>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIG>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/UNOMIL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNHCR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPREDEP>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNPROFOR>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNRWA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNRWA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UNRWA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNRWA>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNTSO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UNU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UNU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UNU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UNU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UNU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/UNU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UNU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/UPU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'associate partner' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/WEU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/WCL>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/WFTU>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/WHO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AND> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MC> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/WIPO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SRB> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MNE> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/WMO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BIH> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RSM> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/V> ;
    :inOrganization <http://abc/mondial/10/organizations/WToO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/FL> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SLO> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/TR> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IS> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/M> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CY> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'observer' ;
    :ofMember <http://abc/mondial/10/countries/MK> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/AL> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/BY> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/LV> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/LT> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/UA> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/HR> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/EW> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'applicant' ;
    :ofMember <http://abc/mondial/10/countries/MD> ;
    :inOrganization <http://abc/mondial/10/organizations/WTrO>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GR> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/F> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/E> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/A> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CZ> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/D> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/H> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/I> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SK> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/CH> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/PL> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/R> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/B> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/L> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/NL> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/BG> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/RO> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/DK> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/SF> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/N> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/S> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/IRL> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/P> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 [ rdf:type :Membership; 
    :type 'member' ;
    :ofMember <http://abc/mondial/10/countries/GB> ;
    :inOrganization <http://abc/mondial/10/organizations/ZC>] .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/AfDB> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ACCT> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ACCT> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ACCT> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ACCT> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ACCT> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/ACCT> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/AG> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/AsDB> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/BIS> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/Benelux> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/Benelux> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/Benelux> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/BSEC> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/CDB> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/CDB> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/CDB> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/CDB> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/BDEAC> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/BDEAC> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/CEI> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/C> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/C> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/C> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/CIS> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/CIS> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/CIS> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/CIS> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/CE> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/CBSS> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/CCC> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ESCAP> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ESCAP> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ESCAP> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ESCAP> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ECA> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ECA> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/ECE> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ECLAC> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ECLAC> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ECLAC> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ECLAC> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ECLAC> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ECLAC> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ECO> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/EBRD> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/EFTA> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/EFTA> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/EFTA> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/EFTA> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/EIB> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/CERN> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ESA> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/EU> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/FAO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/FZ> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/G-5> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/G-5> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/G-5> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/G-6> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/G-6> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/G-7> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/G-7> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/G-7> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/G-7> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/G-8> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/G-8> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/G-8> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/G-8> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/G-8> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/G-9> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/G-10> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/G-10> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/G-10> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/G-10> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/G-10> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/G-10> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/G-10> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/G-10> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/G-77> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/G-77> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/G-77> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IADB> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IAEA> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IBRD> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/ICC> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/ICAO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/ICFTU> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/GBZ> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/Interpol> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IDA> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IEA> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IFRCS> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IFC> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IFAD> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/ILO> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IMO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/Inmarsat> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IMF> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IOC> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/IOM> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/ISO> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ICRM> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/ITU> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/Intelsat> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/IDB> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/IDB> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/LAIA> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/LAIA> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/LAIA> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/MTCR> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/NAM> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/NC> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/NC> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/NC> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/NC> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/NC> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/NIB> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/NIB> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/NIB> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/NIB> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/NIB> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ANC> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/NATO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/EN> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/NSG> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/OECD> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/OSCE> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/OAS> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/OIC> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/OIC> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/PFP> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/PCA> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/SPC> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/SPC> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/UN> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNAVEMIII> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNAMIR> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UNAMIR> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNAMIR> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNAMIR> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/UNCTAD> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNCTAD> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNCRO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNDOF> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNDOF> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/UNESCO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNFICYP> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNFICYP> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNFICYP> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNFICYP> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/UNIDO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNITAR> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNIFIL> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UNIFIL> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNIFIL> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNIFIL> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNIFIL> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNIFIL> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNIKOM> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UNMOGIP> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNMOGIP> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNMOGIP> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNMOGIP> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNMOGIP> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/MINURSO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNMIH> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNMIH> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNMIH> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNMIH> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNMIH> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNMOT> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UNMOT> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNMOT> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNMOT> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/UNMOT> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/UNMOT> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNMOT> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNOMIG> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/UNOMIL> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNHCR> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNPREDEP> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNPROFOR> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNRWA> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNRWA> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UNRWA> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNRWA> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UNTSO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UNU> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UNU> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UNU> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UNU> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UNU> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/UNU> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UNU> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/UPU> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/WEU> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/WCL> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/WFTU> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/WHO> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/AND> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/MC> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/WIPO> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/SRB> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/MNE> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/WMO> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/BIH> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/V> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/RSM> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/WToO> .
 <http://abc/mondial/10/countries/AL> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/MK> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/FL> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/SLO> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/BY> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/LV> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/LT> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/UA> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/HR> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/TR> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/EW> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/IS> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/M> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/MD> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/CY> :isMember 
   <http://abc/mondial/10/organizations/WTrO> .
 <http://abc/mondial/10/countries/GR> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/F> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/E> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/A> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/CZ> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/D> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/H> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/I> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/SK> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/CH> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/PL> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/R> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/B> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/L> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/NL> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/BG> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/RO> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/DK> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/SF> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/N> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/S> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/IRL> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/P> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/countries/GB> :isMember 
   <http://abc/mondial/10/organizations/ZC> .
 <http://abc/mondial/10/seas/Skagerrak> rdf:type :Sea;
     :name 'Skagerrak';
     :depth 725 .
 <http://abc/mondial/10/seas/Kattegat> rdf:type :Sea;
     :name 'Kattegat';
     :depth 94 .
 <http://abc/mondial/10/seas/NorthSea> rdf:type :Sea;
     :name 'North Sea';
     :depth 200 .
 <http://abc/mondial/10/seas/TheChannel> rdf:type :Sea;
     :name 'The Channel';
     :depth 175 .
 <http://abc/mondial/10/seas/BlackSea> rdf:type :Sea;
     :name 'Black Sea';
     :depth 2211 .
 <http://abc/mondial/10/seas/SeaofAzov> rdf:type :Sea;
     :name 'Sea of Azov';
     :depth 100 .
 <http://abc/mondial/10/seas/BalticSea> rdf:type :Sea;
     :name 'Baltic Sea';
     :depth 459 .
 <http://abc/mondial/10/seas/AtlanticOcean> rdf:type :Sea;
     :name 'Atlantic Ocean';
     :depth 9219 .
 <http://abc/mondial/10/seas/MediterraneanSea> rdf:type :Sea;
     :name 'Mediterranean Sea';
     :depth 5121 .
 <http://abc/mondial/10/seas/NorwegianSea> rdf:type :Sea;
     :name 'Norwegian Sea';
     :depth 3860 .
 <http://abc/mondial/10/seas/BarentsSea> rdf:type :Sea;
     :name 'Barents Sea';
     :depth 32 .
 <http://abc/mondial/10/seas/SibirianSea> rdf:type :Sea;
     :name 'Sibirian Sea';
     :depth 540 .
 <http://abc/mondial/10/seas/ArcticOcean> rdf:type :Sea;
     :name 'Arctic Ocean';
     :depth 5608 .
 <http://abc/mondial/10/seas/BeringSea> rdf:type :Sea;
     :name 'Bering Sea';
     :depth 4096 .
 <http://abc/mondial/10/seas/PacificOcean> rdf:type :Sea;
     :name 'Pacific Ocean';
     :depth 11034 .
 <http://abc/mondial/10/seas/SeaofOkhotsk> rdf:type :Sea;
     :name 'Sea of Okhotsk';
     :depth 3372 .
 <http://abc/mondial/10/seas/SeaofJapan> rdf:type :Sea;
     :name 'Sea of Japan';
     :depth 4036 .
 <http://abc/mondial/10/seas/IrishSea> rdf:type :Sea;
     :name 'Irish Sea';
     :depth 272 .
 <http://abc/mondial/10/rivers/Thjorsa> rdf:type :River;
     :name 'Thjorsa';
     :area 7530;
     :length 230 .
 <http://abc/mondial/10/sources/Thjorsa> rdf:type :Source;
     :longitude -18;
     :latitude 65 .
 <http://abc/mondial/10/estuarys/Thjorsa> rdf:type :Estuary;
     :longitude -20.8;
     :latitude 63.9 .
 <http://abc/mondial/10/rivers/JoekulsaaFjoellum> rdf:type :River;
     :name 'Joekulsa a Fjoellum';
     :length 206 .
 <http://abc/mondial/10/sources/JoekulsaaFjoellum> rdf:type :Source;
     :longitude -16.5;
     :latitude 64.8 .
 <http://abc/mondial/10/estuarys/JoekulsaaFjoellum> rdf:type :Estuary;
     :longitude -16.6;
     :latitude 66.2 .
 <http://abc/mondial/10/rivers/Glomma> rdf:type :River;
     :name 'Glomma';
     :length 604 .
 <http://abc/mondial/10/sources/Glomma> rdf:type :Source;
     :longitude 12;
     :latitude 62.6;
     :altitude 860 .
 <http://abc/mondial/10/estuarys/Glomma> rdf:type :Estuary;
     :longitude 10.95;
     :latitude 59.20 .
 <http://abc/mondial/10/rivers/Lagen> rdf:type :River;
     :name 'Lagen';
     :length 322 .
 <http://abc/mondial/10/sources/Lagen> rdf:type :Source;
     :longitude 8.45;
     :latitude 62.19;
     :altitude 611 .
 <http://abc/mondial/10/estuarys/Lagen> rdf:type :Estuary;
     :longitude 11.45;
     :latitude 61.10 .
 <http://abc/mondial/10/rivers/Goetaaelv> rdf:type :River;
     :name 'Goetaaelv';
     :area 50180;
     :length 93 .
 <http://abc/mondial/10/sources/Goetaaelv> rdf:type :Source;
     :longitude 12.34;
     :latitude 58.4;
     :altitude 44 .
 <http://abc/mondial/10/estuarys/Goetaaelv> rdf:type :Estuary;
     :longitude 11.9;
     :latitude 57.7 .
 <http://abc/mondial/10/rivers/Klaraelv> rdf:type :River;
     :name 'Klaraelv';
     :length 460 .
 <http://abc/mondial/10/sources/Klaraelv> rdf:type :Source;
     :longitude 11.9;
     :latitude 62.2;
     :altitude 662 .
 <http://abc/mondial/10/estuarys/Klaraelv> rdf:type :Estuary;
     :longitude 13.5;
     :latitude 59.4 .
 <http://abc/mondial/10/rivers/Umeaelv> rdf:type :River;
     :name 'Umeaelv';
     :length 470 .
 <http://abc/mondial/10/sources/Umeaelv> rdf:type :Source;
     :longitude 15;
     :latitude 66.1 .
 <http://abc/mondial/10/estuarys/Umeaelv> rdf:type :Estuary;
     :longitude 20.1;
     :latitude 63.5 .
 <http://abc/mondial/10/rivers/Dalaelv> rdf:type :River;
     :name 'Dalaelv';
     :length 520 .
 <http://abc/mondial/10/sources/Dalaelv> rdf:type :Source;
     :longitude 15.1;
     :latitude 60.7 .
 <http://abc/mondial/10/estuarys/Dalaelv> rdf:type :Estuary;
     :longitude 17.2;
     :latitude 60.7 .
 <http://abc/mondial/10/rivers/Vaesterdalaelv> rdf:type :River;
     :name 'Vaesterdalaelv';
     :length 320 .
 <http://abc/mondial/10/sources/Vaesterdalaelv> rdf:type :Source;
     :longitude 12.6;
     :latitude 61.8 .
 <http://abc/mondial/10/estuarys/Vaesterdalaelv> rdf:type :Estuary;
     :longitude 15.1;
     :latitude 60.7 .
 <http://abc/mondial/10/rivers/Oesterdalaelv> rdf:type :River;
     :name 'Oesterdalaelv';
     :length 241 .
 <http://abc/mondial/10/sources/Oesterdalaelv> rdf:type :Source;
     :longitude 12.6;
     :latitude 62.2 .
 <http://abc/mondial/10/estuarys/Oesterdalaelv> rdf:type :Estuary;
     :longitude 15.1;
     :latitude 60.7 .
 <http://abc/mondial/10/rivers/Paatsjoki> rdf:type :River;
     :name 'Paatsjoki';
     :area 18404;
     :length 145 .
 <http://abc/mondial/10/sources/Paatsjoki> rdf:type :Source;
     :longitude 28.3;
     :latitude 68.95;
     :altitude 119 .
 <http://abc/mondial/10/estuarys/Paatsjoki> rdf:type :Estuary;
     :longitude 30.05;
     :latitude 60.75 .
 <http://abc/mondial/10/rivers/Ounasjoki> rdf:type :River;
     :name 'Ounasjoki';
     :area 13968;
     :length 300 .
 <http://abc/mondial/10/sources/Ounasjoki> rdf:type :Source;
     :longitude 23.8;
     :latitude 68.6;
     :altitude 450 .
 <http://abc/mondial/10/estuarys/Ounasjoki> rdf:type :Estuary;
     :longitude 24.4;
     :latitude 66.3 .
 <http://abc/mondial/10/rivers/Kemijoki> rdf:type :River;
     :name 'Kemijoki';
     :area 51.127;
     :length 550 .
 <http://abc/mondial/10/sources/Kemijoki> rdf:type :Source;
     :longitude 28.9525;
     :latitude 67.96;
     :altitude 230 .
 <http://abc/mondial/10/estuarys/Kemijoki> rdf:type :Estuary;
     :longitude 24.45;
     :latitude 65.77 .
 <http://abc/mondial/10/rivers/Oulujoki> rdf:type :River;
     :name 'Oulujoki';
     :area 22.841;
     :length 107 .
 <http://abc/mondial/10/sources/Oulujoki> rdf:type :Source;
     :longitude 27.25;
     :latitude 64.3;
     :altitude 123 .
 <http://abc/mondial/10/estuarys/Oulujoki> rdf:type :Estuary;
     :longitude 25.2;
     :latitude 65.3 .
 <http://abc/mondial/10/rivers/Kymijoki> rdf:type :River;
     :name 'Kymijoki';
     :length 203 .
 <http://abc/mondial/10/sources/Kymijoki> rdf:type :Source;
     :longitude 25.4;
     :latitude 61.5;
     :altitude 78 .
 <http://abc/mondial/10/estuarys/Kymijoki> rdf:type :Estuary;
     :longitude 26.5;
     :latitude 60.3 .
 <http://abc/mondial/10/rivers/Kokemaeenjoki> rdf:type :River;
     :name 'Kokemaeenjoki';
     :area 27046;
     :length 121 .
 <http://abc/mondial/10/sources/Kokemaeenjoki> rdf:type :Source;
     :longitude 23;
     :latitude 61.3 .
 <http://abc/mondial/10/estuarys/Kokemaeenjoki> rdf:type :Estuary;
     :longitude 21.2;
     :latitude 61.3 .
 <http://abc/mondial/10/rivers/Vuoksi> rdf:type :River;
     :name 'Vuoksi';
     :area 52.400;
     :length 162 .
 <http://abc/mondial/10/sources/Vuoksi> rdf:type :Source;
     :longitude 28.75;
     :latitude 61.2 .
 <http://abc/mondial/10/estuarys/Vuoksi> rdf:type :Estuary;
     :longitude 31.54;
     :latitude 60.81 .
 <http://abc/mondial/10/rivers/Thames> rdf:type :River;
     :name 'Thames';
     :area 12935;
     :length 346 .
 <http://abc/mondial/10/sources/Thames> rdf:type :Source;
     :longitude -2.03;
     :latitude 51.70;
     :altitude 105 .
 <http://abc/mondial/10/estuarys/Thames> rdf:type :Estuary;
     :longitude 0.65;
     :latitude 51.50 .
 <http://abc/mondial/10/rivers/Maas> rdf:type :River;
     :name 'Maas';
     :area 34548;
     :length 925 .
 <http://abc/mondial/10/sources/Maas> rdf:type :Source;
     :longitude 5.63;
     :latitude 47.97;
     :altitude 409 .
 <http://abc/mondial/10/estuarys/Maas> rdf:type :Estuary;
     :longitude 4.67;
     :latitude 51.72 .
 <http://abc/mondial/10/rivers/Loire> rdf:type :River;
     :name 'Loire';
     :area 117000;
     :length 1013 .
 <http://abc/mondial/10/sources/Loire> rdf:type :Source;
     :longitude 4.22;
     :latitude 44.84;
     :altitude 1408 .
 <http://abc/mondial/10/estuarys/Loire> rdf:type :Estuary;
     :longitude -2.18;
     :latitude 47.27 .
 <http://abc/mondial/10/rivers/Garonne> rdf:type :River;
     :name 'Garonne';
     :area 55000;
     :length 647 .
 <http://abc/mondial/10/sources/Garonne> rdf:type :Source;
     :longitude 0.8;
     :latitude 42.73 .
 <http://abc/mondial/10/estuarys/Garonne> rdf:type :Estuary;
     :longitude -0.6;
     :latitude 45.0 .
 <http://abc/mondial/10/rivers/Rhone> rdf:type :River;
     :name 'Rhone';
     :area 100000;
     :length 812 .
 <http://abc/mondial/10/sources/Rhone> rdf:type :Source;
     :longitude 8.38;
     :latitude 46.57;
     :altitude 1753 .
 <http://abc/mondial/10/estuarys/Rhone> rdf:type :Estuary;
     :longitude 4.84;
     :latitude 43.33 .
 <http://abc/mondial/10/rivers/Saone> rdf:type :River;
     :name 'Saone';
     :length 480 .
 <http://abc/mondial/10/sources/Saone> rdf:type :Source;
     :longitude 6.2;
     :latitude 48.1;
     :altitude 451 .
 <http://abc/mondial/10/estuarys/Saone> rdf:type :Estuary;
     :longitude 4.8;
     :latitude 45.7 .
 <http://abc/mondial/10/rivers/Doubs> rdf:type :River;
     :name 'Doubs';
     :area 4400;
     :length 453 .
 <http://abc/mondial/10/sources/Doubs> rdf:type :Source;
     :longitude 6.2;
     :latitude 46.7;
     :altitude 937 .
 <http://abc/mondial/10/estuarys/Doubs> rdf:type :Estuary;
     :longitude 5.0;
     :latitude 46.9 .
 <http://abc/mondial/10/rivers/Isere> rdf:type :River;
     :name 'Isere';
     :area 11800;
     :length 290 .
 <http://abc/mondial/10/sources/Isere> rdf:type :Source;
     :longitude 7.0;
     :latitude 45.4;
     :altitude 2770 .
 <http://abc/mondial/10/estuarys/Isere> rdf:type :Estuary;
     :longitude 4.9;
     :latitude 45.0 .
 <http://abc/mondial/10/rivers/Seine> rdf:type :River;
     :name 'Seine';
     :area 75000;
     :length 776 .
 <http://abc/mondial/10/sources/Seine> rdf:type :Source;
     :longitude 4.71;
     :latitude 47.48;
     :altitude 470 .
 <http://abc/mondial/10/estuarys/Seine> rdf:type :Estuary;
     :longitude 0.10;
     :latitude 49.42 .
 <http://abc/mondial/10/rivers/Marne> rdf:type :River;
     :name 'Marne';
     :area 12800;
     :length 514 .
 <http://abc/mondial/10/sources/Marne> rdf:type :Source;
     :longitude 5.35;
     :latitude 47.8;
     :altitude 406 .
 <http://abc/mondial/10/estuarys/Marne> rdf:type :Estuary;
     :longitude 2.4;
     :latitude 48.8 .
 <http://abc/mondial/10/rivers/Tajo> rdf:type :River;
     :name 'Tajo';
     :area 80600;
     :length 1007 .
 <http://abc/mondial/10/sources/Tajo> rdf:type :Source;
     :longitude -1.70;
     :latitude 40.32;
     :altitude 1.580 .
 <http://abc/mondial/10/estuarys/Tajo> rdf:type :Estuary;
     :longitude -9.3;
     :latitude 38.7 .
 <http://abc/mondial/10/rivers/Douro> rdf:type :River;
     :name 'Douro';
     :area 98400;
     :length 897 .
 <http://abc/mondial/10/sources/Douro> rdf:type :Source;
     :longitude -3;
     :latitude 42;
     :altitude 2160 .
 <http://abc/mondial/10/estuarys/Douro> rdf:type :Estuary;
     :longitude -8.66;
     :latitude 41.15 .
 <http://abc/mondial/10/rivers/Guadiana> rdf:type :River;
     :name 'Guadiana';
     :area 67733;
     :length 742 .
 <http://abc/mondial/10/sources/Guadiana> rdf:type :Source;
     :longitude -3;
     :latitude 42;
     :altitude 608 .
 <http://abc/mondial/10/estuarys/Guadiana> rdf:type :Estuary;
     :longitude -7.65;
     :latitude 37.35 .
 <http://abc/mondial/10/rivers/Guadalquivir> rdf:type :River;
     :name 'Guadalquivir';
     :area 56978;
     :length 657 .
 <http://abc/mondial/10/sources/Guadalquivir> rdf:type :Source;
     :longitude -3;
     :latitude 37.8;
     :altitude 1400 .
 <http://abc/mondial/10/estuarys/Guadalquivir> rdf:type :Estuary;
     :longitude -6.35;
     :latitude 36.8 .
 <http://abc/mondial/10/rivers/Ebro> rdf:type :River;
     :name 'Ebro';
     :area 83093;
     :length 925 .
 <http://abc/mondial/10/sources/Ebro> rdf:type :Source;
     :longitude -4.37;
     :latitude 43.0375;
     :altitude 1.600 .
 <http://abc/mondial/10/estuarys/Ebro> rdf:type :Estuary;
     :longitude 0.5;
     :latitude 40.8 .
 <http://abc/mondial/10/rivers/Po> rdf:type :River;
     :name 'Po';
     :area 75.000;
     :length 652 .
 <http://abc/mondial/10/sources/Po> rdf:type :Source;
     :longitude 7.09;
     :latitude 44.70;
     :altitude 2022 .
 <http://abc/mondial/10/estuarys/Po> rdf:type :Estuary;
     :longitude 12.43;
     :latitude 44.95 .
 <http://abc/mondial/10/rivers/Ticino> rdf:type :River;
     :name 'Ticino';
     :area 7.228;
     :length 248 .
 <http://abc/mondial/10/sources/Ticino> rdf:type :Source;
     :longitude 8.42;
     :latitude 46.475;
     :altitude 2400 .
 <http://abc/mondial/10/estuarys/Ticino> rdf:type :Estuary;
     :longitude 9.235;
     :latitude 45.14 .
 <http://abc/mondial/10/rivers/Adda> rdf:type :River;
     :name 'Adda';
     :area 7.979;
     :length 313 .
 <http://abc/mondial/10/sources/Adda> rdf:type :Source;
     :longitude 10.3;
     :latitude 46.55;
     :altitude 2235 .
 <http://abc/mondial/10/estuarys/Adda> rdf:type :Estuary;
     :longitude 9.88;
     :latitude 45.13 .
 <http://abc/mondial/10/rivers/Mincio> rdf:type :River;
     :name 'Mincio';
     :area 2859;
     :length 75 .
 <http://abc/mondial/10/sources/Mincio> rdf:type :Source;
     :longitude 10.7;
     :latitude 45.4;
     :altitude 65 .
 <http://abc/mondial/10/estuarys/Mincio> rdf:type :Estuary;
     :longitude 10.95;
     :latitude 45.1 .
 <http://abc/mondial/10/rivers/Etsch> rdf:type :River;
     :name 'Etsch';
     :length 415 .
 <http://abc/mondial/10/sources/Etsch> rdf:type :Source;
     :longitude 10.5;
     :latitude 46.7;
     :altitude 1525 .
 <http://abc/mondial/10/estuarys/Etsch> rdf:type :Estuary;
     :longitude 7.09;
     :latitude 44.8 .
 <http://abc/mondial/10/rivers/Tiber> rdf:type :River;
     :name 'Tiber';
     :length 405 .
 <http://abc/mondial/10/sources/Tiber> rdf:type :Source;
     :longitude 12.08;
     :latitude 43.77;
     :altitude 1348 .
 <http://abc/mondial/10/estuarys/Tiber> rdf:type :Estuary;
     :longitude 12.23;
     :latitude 41.74 .
 <http://abc/mondial/10/rivers/Arno> rdf:type :River;
     :name 'Arno';
     :area 8200;
     :length 240 .
 <http://abc/mondial/10/sources/Arno> rdf:type :Source;
     :longitude 11.7;
     :latitude 43.9;
     :altitude 1385 .
 <http://abc/mondial/10/estuarys/Arno> rdf:type :Estuary;
     :longitude 10.2;
     :latitude 43.7 .
 <http://abc/mondial/10/rivers/Donau> rdf:type :River;
     :name 'Donau';
     :area 795686;
     :length 2845 .
 <http://abc/mondial/10/sources/Donau> rdf:type :Source;
     :longitude 8.52;
     :latitude 47.95;
     :altitude 686 .
 <http://abc/mondial/10/estuarys/Donau> rdf:type :Estuary;
     :longitude 29.65;
     :latitude 45.16 .
 <http://abc/mondial/10/rivers/Breg> rdf:type :River;
     :name 'Breg';
     :area 291.2;
     :length 45.9 .
 <http://abc/mondial/10/sources/Breg> rdf:type :Source;
     :longitude 8.16;
     :latitude 48.10;
     :altitude 1078 .
 <http://abc/mondial/10/estuarys/Breg> rdf:type :Estuary;
     :longitude 8.52;
     :latitude 47.95 .
 <http://abc/mondial/10/rivers/Brigach> rdf:type :River;
     :name 'Brigach';
     :area 195;
     :length 43 .
 <http://abc/mondial/10/sources/Brigach> rdf:type :Source;
     :longitude 8.28;
     :latitude 48.11;
     :altitude 940 .
 <http://abc/mondial/10/estuarys/Brigach> rdf:type :Estuary;
     :longitude 8.52;
     :latitude 47.95 .
 <http://abc/mondial/10/rivers/Iller> rdf:type :River;
     :name 'Iller';
     :area 2152;
     :length 147 .
 <http://abc/mondial/10/sources/Iller> rdf:type :Source;
     :longitude 10.27;
     :latitude 47.43;
     :altitude 783 .
 <http://abc/mondial/10/estuarys/Iller> rdf:type :Estuary;
     :longitude 9.97;
     :latitude 48.38 .
 <http://abc/mondial/10/rivers/Lech> rdf:type :River;
     :name 'Lech';
     :area 3926;
     :length 264 .
 <http://abc/mondial/10/sources/Lech> rdf:type :Source;
     :longitude 10.0;
     :latitude 47.17;
     :altitude 1840 .
 <http://abc/mondial/10/estuarys/Lech> rdf:type :Estuary;
     :longitude 10.93;
     :latitude 48.73 .
 <http://abc/mondial/10/rivers/Isar> rdf:type :River;
     :name 'Isar';
     :area 8370;
     :length 295 .
 <http://abc/mondial/10/sources/Isar> rdf:type :Source;
     :longitude 11.40;
     :latitude 47.37;
     :altitude 1.160 .
 <http://abc/mondial/10/estuarys/Isar> rdf:type :Estuary;
     :longitude 12.98;
     :latitude 48.80 .
 <http://abc/mondial/10/rivers/Ammer> rdf:type :River;
     :name 'Ammer';
     :area 3100;
     :length 168 .
 <http://abc/mondial/10/sources/Ammer> rdf:type :Source;
     :longitude 11.05;
     :latitude 47.57;
     :altitude 850 .
 <http://abc/mondial/10/estuarys/Ammer> rdf:type :Estuary;
     :longitude 11.96;
     :latitude 48.50 .
 <http://abc/mondial/10/rivers/Wurm> rdf:type :River;
     :name 'Wurm';
     :area 3100;
     :length 35 .
 <http://abc/mondial/10/sources/Wurm> rdf:type :Source;
     :longitude 11.35;
     :latitude 48.00;
     :altitude 596 .
 <http://abc/mondial/10/estuarys/Wurm> rdf:type :Estuary;
     :longitude 11.5;
     :latitude 48.30 .
 <http://abc/mondial/10/rivers/Inn> rdf:type :River;
     :name 'Inn';
     :area 25700;
     :length 517 .
 <http://abc/mondial/10/sources/Inn> rdf:type :Source;
     :longitude 9.67;
     :latitude 46.41;
     :altitude 2484 .
 <http://abc/mondial/10/estuarys/Inn> rdf:type :Estuary;
     :longitude 13.47;
     :latitude 48.57 .
 <http://abc/mondial/10/rivers/Alz> rdf:type :River;
     :name 'Alz';
     :area 2197;
     :length 150 .
 <http://abc/mondial/10/sources/Alz> rdf:type :Source;
     :longitude 12.35;
     :latitude 47.3 .
 <http://abc/mondial/10/estuarys/Alz> rdf:type :Estuary;
     :longitude 12.8;
     :latitude 48.3 .
 <http://abc/mondial/10/rivers/Salzach> rdf:type :River;
     :name 'Salzach';
     :area 6700;
     :length 225 .
 <http://abc/mondial/10/sources/Salzach> rdf:type :Source;
     :longitude 12.11;
     :latitude 47.30;
     :altitude 2300 .
 <http://abc/mondial/10/estuarys/Salzach> rdf:type :Estuary;
     :longitude 12.92;
     :latitude 48.21 .
 <http://abc/mondial/10/rivers/Enns> rdf:type :River;
     :name 'Enns';
     :area 5940;
     :length 254 .
 <http://abc/mondial/10/sources/Enns> rdf:type :Source;
     :longitude 13.35;
     :latitude 47.33;
     :altitude 1375 .
 <http://abc/mondial/10/estuarys/Enns> rdf:type :Estuary;
     :longitude 14.52;
     :latitude 48.24 .
 <http://abc/mondial/10/rivers/March> rdf:type :River;
     :name 'March';
     :area 27633;
     :length 358 .
 <http://abc/mondial/10/sources/March> rdf:type :Source;
     :longitude 16.85;
     :latitude 50.21;
     :altitude 1380 .
 <http://abc/mondial/10/estuarys/March> rdf:type :Estuary;
     :longitude 16.98;
     :latitude 48.17 .
 <http://abc/mondial/10/rivers/Raab> rdf:type :River;
     :name 'Raab';
     :area 1020;
     :length 250 .
 <http://abc/mondial/10/sources/Raab> rdf:type :Source;
     :longitude 15.52;
     :latitude 47.35;
     :altitude 1150 .
 <http://abc/mondial/10/estuarys/Raab> rdf:type :Estuary;
     :longitude 17.63;
     :latitude 47.69 .
 <http://abc/mondial/10/rivers/Waag> rdf:type :River;
     :name 'Waag';
     :area 10640;
     :length 403 .
 <http://abc/mondial/10/sources/Waag> rdf:type :Source;
     :longitude 19.81;
     :latitude 49.02;
     :altitude 664 .
 <http://abc/mondial/10/estuarys/Waag> rdf:type :Estuary;
     :longitude 18.15;
     :latitude 47.75 .
 <http://abc/mondial/10/rivers/Drau> rdf:type :River;
     :name 'Drau';
     :area 11828;
     :length 749 .
 <http://abc/mondial/10/sources/Drau> rdf:type :Source;
     :longitude 12.26;
     :latitude 46.73;
     :altitude 1450 .
 <http://abc/mondial/10/estuarys/Drau> rdf:type :Estuary;
     :longitude 18.93;
     :latitude 45.54 .
 <http://abc/mondial/10/rivers/Mur> rdf:type :River;
     :name 'Mur';
     :area 13824;
     :length 453 .
 <http://abc/mondial/10/sources/Mur> rdf:type :Source;
     :longitude 13.35;
     :latitude 47.13;
     :altitude 1898 .
 <http://abc/mondial/10/estuarys/Mur> rdf:type :Estuary;
     :longitude 16.88;
     :latitude 46.30 .
 <http://abc/mondial/10/rivers/Theiss> rdf:type :River;
     :name 'Theiss';
     :area 146500;
     :length 1308 .
 <http://abc/mondial/10/sources/Theiss> rdf:type :Source;
     :longitude 24.25;
     :latitude 48.1;
     :altitude 460 .
 <http://abc/mondial/10/estuarys/Theiss> rdf:type :Estuary;
     :longitude 20.3;
     :latitude 45.05 .
 <http://abc/mondial/10/rivers/Save> rdf:type :River;
     :name 'Save';
     :area 95419;
     :length 945 .
 <http://abc/mondial/10/sources/Save> rdf:type :Source;
     :longitude 13.6;
     :latitude 46.2 .
 <http://abc/mondial/10/estuarys/Save> rdf:type :Estuary;
     :longitude 20.4667;
     :latitude 44.8 .
 <http://abc/mondial/10/rivers/Morava> rdf:type :River;
     :name 'Morava';
     :area 37444;
     :length 185 .
 <http://abc/mondial/10/sources/Morava> rdf:type :Source;
     :longitude 21.4;
     :latitude 43.7 .
 <http://abc/mondial/10/estuarys/Morava> rdf:type :Estuary;
     :longitude 21.1;
     :latitude 44.6 .
 <http://abc/mondial/10/rivers/WesternMorava> rdf:type :River;
     :name 'Western Morava';
     :area 15849;
     :length 308 .
 <http://abc/mondial/10/sources/WesternMorava> rdf:type :Source;
     :longitude 20.2;
     :latitude 43.85 .
 <http://abc/mondial/10/estuarys/WesternMorava> rdf:type :Estuary;
     :longitude 21.4;
     :latitude 43.7 .
 <http://abc/mondial/10/rivers/SouthernMorava> rdf:type :River;
     :name 'Southern Morava';
     :area 15469;
     :length 295 .
 <http://abc/mondial/10/sources/SouthernMorava> rdf:type :Source;
     :longitude 21.4;
     :latitude 42.1 .
 <http://abc/mondial/10/estuarys/SouthernMorava> rdf:type :Estuary;
     :longitude 21.4;
     :latitude 43.7 .
 <http://abc/mondial/10/rivers/Olt> rdf:type :River;
     :name 'Olt';
     :area 24010;
     :length 615 .
 <http://abc/mondial/10/sources/Olt> rdf:type :Source;
     :longitude 25.8;
     :latitude 46.65;
     :altitude 1280 .
 <http://abc/mondial/10/estuarys/Olt> rdf:type :Estuary;
     :longitude 24.8;
     :latitude 43.7 .
 <http://abc/mondial/10/rivers/Pruth> rdf:type :River;
     :name 'Pruth';
     :area 27500;
     :length 953 .
 <http://abc/mondial/10/sources/Pruth> rdf:type :Source;
     :longitude 24.55;
     :latitude 48.16 .
 <http://abc/mondial/10/estuarys/Pruth> rdf:type :Estuary;
     :longitude 28.21;
     :latitude 45.47 .
 <http://abc/mondial/10/rivers/Dnjestr> rdf:type :River;
     :name 'Dnjestr';
     :area 72100;
     :length 1352 .
 <http://abc/mondial/10/sources/Dnjestr> rdf:type :Source;
     :longitude 23;
     :latitude 49;
     :altitude 1000 .
 <http://abc/mondial/10/estuarys/Dnjestr> rdf:type :Estuary;
     :longitude 30.23;
     :latitude 46.35 .
 <http://abc/mondial/10/rivers/Weser> rdf:type :River;
     :name 'Weser';
     :area 41.094;
     :length 440 .
 <http://abc/mondial/10/sources/Weser> rdf:type :Source;
     :longitude 9.65;
     :latitude 51.4;
     :altitude 116.5 .
 <http://abc/mondial/10/estuarys/Weser> rdf:type :Estuary;
     :longitude 8.5;
     :latitude 53.5 .
 <http://abc/mondial/10/rivers/Aller> rdf:type :River;
     :name 'Aller';
     :area 15744;
     :length 211 .
 <http://abc/mondial/10/sources/Aller> rdf:type :Source;
     :longitude 11.23;
     :latitude 52.10;
     :altitude 130 .
 <http://abc/mondial/10/estuarys/Aller> rdf:type :Estuary;
     :longitude 9.18;
     :latitude 52.94 .
 <http://abc/mondial/10/rivers/Leine> rdf:type :River;
     :name 'Leine';
     :area 6512;
     :length 281 .
 <http://abc/mondial/10/sources/Leine> rdf:type :Source;
     :longitude 10.32;
     :latitude 51.39;
     :altitude 340 .
 <http://abc/mondial/10/estuarys/Leine> rdf:type :Estuary;
     :longitude 9.59;
     :latitude 52.72 .
 <http://abc/mondial/10/rivers/Werra> rdf:type :River;
     :name 'Werra';
     :area 5496;
     :length 292 .
 <http://abc/mondial/10/sources/Werra> rdf:type :Source;
     :longitude 10.96;
     :latitude 50.5;
     :altitude 797 .
 <http://abc/mondial/10/estuarys/Werra> rdf:type :Estuary;
     :longitude 9.65;
     :latitude 51.4 .
 <http://abc/mondial/10/rivers/Fulda> rdf:type :River;
     :name 'Fulda';
     :area 6947;
     :length 221 .
 <http://abc/mondial/10/sources/Fulda> rdf:type :Source;
     :longitude 9.9;
     :latitude 50.5;
     :altitude 850 .
 <http://abc/mondial/10/estuarys/Fulda> rdf:type :Estuary;
     :longitude 9.65;
     :latitude 51.4 .
 <http://abc/mondial/10/rivers/Elbe> rdf:type :River;
     :name 'Elbe';
     :area 148268;
     :length 1091 .
 <http://abc/mondial/10/sources/Elbe> rdf:type :Source;
     :longitude 15.54;
     :latitude 50.78;
     :altitude 1.386 .
 <http://abc/mondial/10/estuarys/Elbe> rdf:type :Estuary;
     :longitude 8.71;
     :latitude 53.89 .
 <http://abc/mondial/10/rivers/Moldau> rdf:type :River;
     :name 'Moldau';
     :area 28000;
     :length 440 .
 <http://abc/mondial/10/sources/Moldau> rdf:type :Source;
     :longitude 13.56;
     :latitude 48.97;
     :altitude 1174 .
 <http://abc/mondial/10/estuarys/Moldau> rdf:type :Estuary;
     :longitude 14.47;
     :latitude 50.35 .
 <http://abc/mondial/10/rivers/Rhein> rdf:type :River;
     :name 'Rhein';
     :area 198735;
     :length 1324 .
 <http://abc/mondial/10/sources/Rhein> rdf:type :Source;
     :longitude 8.7;
     :latitude 46.6;
     :altitude 2345 .
 <http://abc/mondial/10/estuarys/Rhein> rdf:type :Estuary;
     :longitude 4.00;
     :latitude 51.9 .
 <http://abc/mondial/10/rivers/Main> rdf:type :River;
     :name 'Main';
     :area 27292;
     :length 524 .
 <http://abc/mondial/10/sources/Main> rdf:type :Source;
     :longitude 11.4;
     :latitude 50.1;
     :altitude 887 .
 <http://abc/mondial/10/estuarys/Main> rdf:type :Estuary;
     :longitude 8.29;
     :latitude 49.99 .
 <http://abc/mondial/10/rivers/Mosel> rdf:type :River;
     :name 'Mosel';
     :area 28286;
     :length 544 .
 <http://abc/mondial/10/sources/Mosel> rdf:type :Source;
     :longitude 6.89;
     :latitude 47.89;
     :altitude 715 .
 <http://abc/mondial/10/estuarys/Mosel> rdf:type :Estuary;
     :longitude 7.61;
     :latitude 50.37 .
 <http://abc/mondial/10/rivers/Saar> rdf:type :River;
     :name 'Saar';
     :area 7431;
     :length 227 .
 <http://abc/mondial/10/sources/Saar> rdf:type :Source;
     :longitude 7.15;
     :latitude 48.5;
     :altitude 640 .
 <http://abc/mondial/10/estuarys/Saar> rdf:type :Estuary;
     :longitude 6.6;
     :latitude 49.7 .
 <http://abc/mondial/10/rivers/Neckar> rdf:type :River;
     :name 'Neckar';
     :area 14000;
     :length 367 .
 <http://abc/mondial/10/sources/Neckar> rdf:type :Source;
     :longitude 8.5;
     :latitude 48.05;
     :altitude 706 .
 <http://abc/mondial/10/estuarys/Neckar> rdf:type :Estuary;
     :longitude 8.44;
     :latitude 49.51 .
 <http://abc/mondial/10/rivers/Aare> rdf:type :River;
     :name 'Aare';
     :area 17620;
     :length 288 .
 <http://abc/mondial/10/sources/Aare> rdf:type :Source;
     :longitude 8.2;
     :latitude 46.55;
     :altitude 2310 .
 <http://abc/mondial/10/estuarys/Aare> rdf:type :Estuary;
     :longitude 8.22;
     :latitude 47.61 .
 <http://abc/mondial/10/rivers/Reuss> rdf:type :River;
     :name 'Reuss';
     :area 3425;
     :length 164 .
 <http://abc/mondial/10/sources/Reuss> rdf:type :Source;
     :longitude 8.54;
     :latitude 46.56;
     :altitude 2431 .
 <http://abc/mondial/10/estuarys/Reuss> rdf:type :Estuary;
     :longitude 8.2371;
     :latitude 47.4921 .
 <http://abc/mondial/10/rivers/Limmat> rdf:type :River;
     :name 'Limmat';
     :area 2416;
     :length 36.3 .
 <http://abc/mondial/10/sources/Limmat> rdf:type :Source;
     :longitude 8.64;
     :latitude 47.23;
     :altitude 406 .
 <http://abc/mondial/10/estuarys/Limmat> rdf:type :Estuary;
     :longitude 8.236313;
     :latitude 47.501794 .
 <http://abc/mondial/10/rivers/Oder> rdf:type :River;
     :name 'Oder';
     :area 118861;
     :length 866 .
 <http://abc/mondial/10/sources/Oder> rdf:type :Source;
     :longitude 17.52;
     :latitude 49.61;
     :altitude 634 .
 <http://abc/mondial/10/estuarys/Oder> rdf:type :Estuary;
     :longitude 14.59;
     :latitude 53.60 .
 <http://abc/mondial/10/rivers/Weichsel> rdf:type :River;
     :name 'Weichsel';
     :area 194424;
     :length 1047 .
 <http://abc/mondial/10/sources/Weichsel> rdf:type :Source;
     :longitude 19.01;
     :latitude 49.61;
     :altitude 1100 .
 <http://abc/mondial/10/estuarys/Weichsel> rdf:type :Estuary;
     :longitude 18.95;
     :latitude 54.36 .
 <http://abc/mondial/10/rivers/Drin> rdf:type :River;
     :name 'Drin';
     :area 11756;
     :length 152 .
 <http://abc/mondial/10/sources/Drin> rdf:type :Source;
     :longitude 20.4;
     :latitude 42.1 .
 <http://abc/mondial/10/estuarys/Drin> rdf:type :Estuary;
     :longitude 19.6;
     :latitude 41.8 .
 <http://abc/mondial/10/rivers/WhiteDrin> rdf:type :River;
     :name 'White Drin';
     :area 4964;
     :length 175 .
 <http://abc/mondial/10/sources/WhiteDrin> rdf:type :Source;
     :longitude 20.2;
     :latitude 42.7 .
 <http://abc/mondial/10/estuarys/WhiteDrin> rdf:type :Estuary;
     :longitude 20.4;
     :latitude 42.1 .
 <http://abc/mondial/10/rivers/BlackDrin> rdf:type :River;
     :name 'Black Drin';
     :length 133 .
 <http://abc/mondial/10/sources/BlackDrin> rdf:type :Source;
     :longitude 20.7;
     :latitude 41.0;
     :altitude 695 .
 <http://abc/mondial/10/estuarys/BlackDrin> rdf:type :Estuary;
     :longitude 20.4;
     :latitude 42.1 .
 <http://abc/mondial/10/rivers/Kura> rdf:type :River;
     :name 'Kura';
     :length 1364 .
 <http://abc/mondial/10/sources/Kura> rdf:type :Source;
     :longitude 42.76;
     :latitude 40.7;
     :altitude 2650 .
 <http://abc/mondial/10/rivers/Tigris> rdf:type :River;
     :name 'Tigris';
     :area 375000;
     :length 1900 .
 <http://abc/mondial/10/sources/Tigris> rdf:type :Source;
     :longitude 41.0;
     :latitude 38.3 .
 <http://abc/mondial/10/rivers/Euphrat> rdf:type :River;
     :name 'Euphrat';
     :length 2736 .
 <http://abc/mondial/10/sources/Euphrat> rdf:type :Source;
     :longitude 38.75;
     :latitude 38.8 .
 <http://abc/mondial/10/rivers/Murat> rdf:type :River;
     :name 'Murat';
     :length 720 .
 <http://abc/mondial/10/sources/Murat> rdf:type :Source;
     :longitude 44.1;
     :latitude 39.55;
     :altitude 1950 .
 <http://abc/mondial/10/estuarys/Murat> rdf:type :Estuary;
     :longitude 38.75;
     :latitude 38.8 .
 <http://abc/mondial/10/rivers/Karasu> rdf:type :River;
     :name 'Karasu';
     :length 720 .
 <http://abc/mondial/10/sources/Karasu> rdf:type :Source;
     :longitude 41.3;
     :latitude 49.9;
     :altitude 1950 .
 <http://abc/mondial/10/estuarys/Karasu> rdf:type :Estuary;
     :longitude 38.75;
     :latitude 38.8 .
 <http://abc/mondial/10/rivers/NorthernDwina> rdf:type :River;
     :name 'Northern Dwina';
     :area 357052;
     :length 740 .
 <http://abc/mondial/10/sources/NorthernDwina> rdf:type :Source;
     :longitude 60.9;
     :latitude 46.3;
     :altitude 180 .
 <http://abc/mondial/10/estuarys/NorthernDwina> rdf:type :Estuary;
     :longitude 40.5333;
     :latitude 64.55 .
 <http://abc/mondial/10/rivers/Suchona> rdf:type :River;
     :name 'Suchona';
     :area 50300;
     :length 558 .
 <http://abc/mondial/10/sources/Suchona> rdf:type :Source;
     :longitude 59;
     :latitude 39;
     :altitude 180 .
 <http://abc/mondial/10/estuarys/Suchona> rdf:type :Estuary;
     :longitude 60.9;
     :latitude 46.3 .
 <http://abc/mondial/10/rivers/Petschora> rdf:type :River;
     :name 'Petschora';
     :length 1809 .
 <http://abc/mondial/10/sources/Petschora> rdf:type :Source;
     :longitude 59;
     :latitude 62 .
 <http://abc/mondial/10/estuarys/Petschora> rdf:type :Estuary;
     :longitude 54;
     :latitude 68.5 .
 <http://abc/mondial/10/rivers/Newa> rdf:type :River;
     :name 'Newa';
     :area 281000;
     :length 74 .
 <http://abc/mondial/10/sources/Newa> rdf:type :Source;
     :longitude 31.53;
     :latitude 60.82;
     :altitude 4 .
 <http://abc/mondial/10/estuarys/Newa> rdf:type :Estuary;
     :longitude 30.17;
     :latitude 59.95 .
 <http://abc/mondial/10/rivers/Swir> rdf:type :River;
     :name 'Swir';
     :length 224 .
 <http://abc/mondial/10/sources/Swir> rdf:type :Source;
     :longitude 35.49;
     :latitude 60.99;
     :altitude 33 .
 <http://abc/mondial/10/estuarys/Swir> rdf:type :Estuary;
     :longitude 32.79;
     :latitude 60.51 .
 <http://abc/mondial/10/rivers/Narva> rdf:type :River;
     :name 'Narva';
     :length 78 .
 <http://abc/mondial/10/sources/Narva> rdf:type :Source;
     :longitude 27.49;
     :latitude 58.68;
     :altitude 30 .
 <http://abc/mondial/10/estuarys/Narva> rdf:type :Estuary;
     :longitude 28.04;
     :latitude 59.46 .
 <http://abc/mondial/10/rivers/WesternDwina> rdf:type :River;
     :name 'Western Dwina';
     :length 1020 .
 <http://abc/mondial/10/sources/WesternDwina> rdf:type :Source;
     :longitude 34;
     :latitude 56;
     :altitude 228 .
 <http://abc/mondial/10/estuarys/WesternDwina> rdf:type :Estuary;
     :longitude 24.1;
     :latitude 57 .
 <http://abc/mondial/10/rivers/Volga> rdf:type :River;
     :name 'Volga';
     :area 1410000;
     :length 3531 .
 <http://abc/mondial/10/sources/Volga> rdf:type :Source;
     :longitude 33;
     :latitude 57 .
 <http://abc/mondial/10/estuarys/Volga> rdf:type :Estuary;
     :longitude 47.85;
     :latitude 46.733333333333 .
 <http://abc/mondial/10/rivers/Oka> rdf:type :River;
     :name 'Oka';
     :length 1480 .
 <http://abc/mondial/10/sources/Oka> rdf:type :Source;
     :longitude 36.1;
     :latitude 52.5 .
 <http://abc/mondial/10/estuarys/Oka> rdf:type :Estuary;
     :longitude 44;
     :latitude 56.3 .
 <http://abc/mondial/10/rivers/Don> rdf:type :River;
     :name 'Don';
     :area 425600;
     :length 1870 .
 <http://abc/mondial/10/sources/Don> rdf:type :Source;
     :longitude 37.5;
     :latitude 53 .
 <http://abc/mondial/10/estuarys/Don> rdf:type :Estuary;
     :longitude 39.4;
     :latitude 47.1 .
 <http://abc/mondial/10/rivers/Dnepr> rdf:type :River;
     :name 'Dnepr';
     :area 531817;
     :length 2201 .
 <http://abc/mondial/10/sources/Dnepr> rdf:type :Source;
     :longitude 34;
     :latitude 55.5;
     :altitude 220 .
 <http://abc/mondial/10/estuarys/Dnepr> rdf:type :Estuary;
     :longitude 32.252;
     :latitude 46.5257 .
 <http://abc/mondial/10/rivers/Ural> rdf:type :River;
     :name 'Ural';
     :area 244280;
     :length 2428 .
 <http://abc/mondial/10/sources/Ural> rdf:type :Source;
     :longitude 59;
     :latitude 54 .
 <http://abc/mondial/10/rivers/Ob> rdf:type :River;
     :name 'Ob';
     :area 2972497;
     :length 3650 .
 <http://abc/mondial/10/sources/Ob> rdf:type :Source;
     :longitude 85.00;
     :latitude 52.43;
     :altitude 162 .
 <http://abc/mondial/10/estuarys/Ob> rdf:type :Estuary;
     :longitude 71.35;
     :latitude 66.48 .
 <http://abc/mondial/10/rivers/Irtysch> rdf:type :River;
     :name 'Irtysch';
     :area 1673470;
     :length 4248 .
 <http://abc/mondial/10/estuarys/Irtysch> rdf:type :Estuary;
     :longitude 68.93;
     :latitude 61.07 .
 <http://abc/mondial/10/rivers/Tobol> rdf:type :River;
     :name 'Tobol';
     :area 426000;
     :length 1591 .
 <http://abc/mondial/10/sources/Tobol> rdf:type :Source;
     :longitude 60.8;
     :latitude 51.2 .
 <http://abc/mondial/10/estuarys/Tobol> rdf:type :Estuary;
     :longitude 68.25;
     :latitude 58.2 .
 <http://abc/mondial/10/rivers/Ischim> rdf:type :River;
     :name 'Ischim';
     :length 2450 .
 <http://abc/mondial/10/estuarys/Ischim> rdf:type :Estuary;
     :longitude 71.5;
     :latitude 58 .
 <http://abc/mondial/10/rivers/Katun> rdf:type :River;
     :name 'Katun';
     :area 60900;
     :length 688 .
 <http://abc/mondial/10/sources/Katun> rdf:type :Source;
     :longitude 86.56;
     :latitude 49.75;
     :altitude 2000 .
 <http://abc/mondial/10/estuarys/Katun> rdf:type :Estuary;
     :longitude 85.00;
     :latitude 52.43 .
 <http://abc/mondial/10/rivers/Jenissej> rdf:type :River;
     :name 'Jenissej';
     :area 2554482;
     :length 4092 .
 <http://abc/mondial/10/sources/Jenissej> rdf:type :Source;
     :longitude 97.5;
     :latitude 52.33 .
 <http://abc/mondial/10/estuarys/Jenissej> rdf:type :Estuary;
     :longitude 100.02;
     :latitude 51.06 .
 <http://abc/mondial/10/rivers/Angara> rdf:type :River;
     :name 'Angara';
     :area 1039000;
     :length 1779 .
 <http://abc/mondial/10/sources/Angara> rdf:type :Source;
     :longitude 113;
     :latitude 56.5 .
 <http://abc/mondial/10/estuarys/Angara> rdf:type :Estuary;
     :longitude 92.5;
     :latitude 58.2 .
 <http://abc/mondial/10/rivers/Chatanga> rdf:type :River;
     :name 'Chatanga';
     :area 275000;
     :length 1636 .
 <http://abc/mondial/10/sources/Chatanga> rdf:type :Source;
     :longitude 95;
     :latitude 68 .
 <http://abc/mondial/10/estuarys/Chatanga> rdf:type :Estuary;
     :longitude 115;
     :latitude 73 .
 <http://abc/mondial/10/rivers/Lena> rdf:type :River;
     :name 'Lena';
     :area 2306772;
     :length 4400 .
 <http://abc/mondial/10/sources/Lena> rdf:type :Source;
     :longitude 107.88;
     :latitude 53.99;
     :altitude 1465 .
 <http://abc/mondial/10/estuarys/Lena> rdf:type :Estuary;
     :longitude 126.69187;
     :latitude 72.4005 .
 <http://abc/mondial/10/rivers/Amur> rdf:type :River;
     :name 'Amur';
     :area 1855000;
     :length 2824 .
 <http://abc/mondial/10/sources/Amur> rdf:type :Source;
     :longitude 121.48;
     :latitude 53.33;
     :altitude 305 .
 <http://abc/mondial/10/estuarys/Amur> rdf:type :Estuary;
     :longitude 140.73;
     :latitude 53.1 .
 <http://abc/mondial/10/rivers/Schilka> rdf:type :River;
     :name 'Schilka';
     :length 560 .
 <http://abc/mondial/10/sources/Schilka> rdf:type :Source;
     :longitude 111;
     :latitude 49.8 .
 <http://abc/mondial/10/estuarys/Schilka> rdf:type :Estuary;
     :longitude 121.48;
     :latitude 53.33 .
 <http://abc/mondial/10/rivers/Argun> rdf:type :River;
     :name 'Argun';
     :area 164000;
     :length 1620 .
 <http://abc/mondial/10/estuarys/Argun> rdf:type :Estuary;
     :longitude 121.48;
     :latitude 53.33 .
 <http://abc/mondial/10/rivers/Kolyma> rdf:type :River;
     :name 'Kolyma';
     :area 526000;
     :length 2129 .
 <http://abc/mondial/10/sources/Kolyma> rdf:type :Source;
     :longitude 145;
     :latitude 61.5 .
 <http://abc/mondial/10/estuarys/Kolyma> rdf:type :Estuary;
     :longitude 161.49;
     :latitude 69.63 .
 <http://abc/mondial/10/lakes/Inari> rdf:type :Lake;
     :name 'Inari';
     :longitude 27.7;
     :latitude 68.95;
     :area 1040;
     :altitude 119;
     :depth 92 .
 <http://abc/mondial/10/lakes/Oulujaervi> rdf:type :Lake;
     :name 'Oulujaervi';
     :longitude 27.25;
     :latitude 64.3;
     :area 928;
     :altitude 123;
     :depth 35 .
 <http://abc/mondial/10/lakes/Kallavesi> rdf:type :Lake;
     :name 'Kallavesi';
     :longitude 27.7;
     :latitude 62.9;
     :area 472 .
 <http://abc/mondial/10/lakes/Saimaa> rdf:type :Lake;
     :name 'Saimaa';
     :longitude 28.0;
     :latitude 61.3;
     :area 4370;
     :altitude 76;
     :depth 85 .
 <http://abc/mondial/10/lakes/Paeijaenne> rdf:type :Lake;
     :name 'Paeijaenne';
     :longitude 25.4;
     :latitude 61.5;
     :area 1118;
     :altitude 78;
     :depth 95 .
 <http://abc/mondial/10/lakes/Mjoesa-See> rdf:type :Lake;
     :name 'Mjoesa-See';
     :longitude 11;
     :latitude 60.65;
     :area 368;
     :altitude 123;
     :depth 449 .
 <http://abc/mondial/10/lakes/Storuman> rdf:type :Lake;
     :name 'Storuman';
     :longitude 16.88;
     :latitude 65.22;
     :area 173;
     :altitude 419;
     :depth 139 .
 <http://abc/mondial/10/lakes/Siljan> rdf:type :Lake;
     :name 'Siljan';
     :longitude 14.8;
     :latitude 60.85;
     :area 290;
     :altitude 161;
     :depth 134;
     :type 'impact' .
 <http://abc/mondial/10/lakes/Maelaren> rdf:type :Lake;
     :name 'Maelaren';
     :longitude 17.1;
     :latitude 59.4;
     :area 1140;
     :altitude 0.7;
     :depth 66 .
 <http://abc/mondial/10/lakes/Vaenern> rdf:type :Lake;
     :name 'Vaenern';
     :longitude 13.3;
     :latitude 58.8;
     :area 5648;
     :altitude 44;
     :depth 106 .
 <http://abc/mondial/10/lakes/Vaettern> rdf:type :Lake;
     :name 'Vaettern';
     :longitude 14.5;
     :latitude 58.3;
     :area 1900;
     :altitude 88;
     :depth 119 .
 <http://abc/mondial/10/lakes/Arresoe> rdf:type :Lake;
     :name 'Arresoe';
     :longitude 12.1;
     :latitude 56;
     :area 40.2;
     :depth 5.6 .
 <http://abc/mondial/10/lakes/LochNess> rdf:type :Lake;
     :name 'Loch Ness';
     :longitude -4.44;
     :latitude 57.31;
     :area 56;
     :altitude 16;
     :depth 226 .
 <http://abc/mondial/10/lakes/LochLomond> rdf:type :Lake;
     :name 'Loch Lomond';
     :longitude -4.59;
     :latitude 56.08;
     :area 71;
     :altitude 7.9;
     :depth 190 .
 <http://abc/mondial/10/lakes/Bodensee> rdf:type :Lake;
     :name 'Bodensee';
     :longitude 9.4;
     :latitude 47.6;
     :area 538.5;
     :altitude 395;
     :depth 254 .
 <http://abc/mondial/10/lakes/Chiemsee> rdf:type :Lake;
     :name 'Chiemsee';
     :longitude 12.4;
     :latitude 47.9;
     :area 80;
     :altitude 518;
     :depth 73 .
 <http://abc/mondial/10/lakes/StarnbergerSee> rdf:type :Lake;
     :name 'Starnberger See';
     :longitude 11.32;
     :latitude 47.92;
     :area 56.36;
     :altitude 584;
     :depth 127.7 .
 <http://abc/mondial/10/lakes/Ammersee> rdf:type :Lake;
     :name 'Ammersee';
     :longitude 11.6;
     :latitude 48;
     :area 46.6;
     :altitude 533;
     :depth 81.1 .
 <http://abc/mondial/10/lakes/LaacherMaar> rdf:type :Lake;
     :name 'Laacher Maar';
     :longitude 7.3;
     :latitude 50.4;
     :area 3.3;
     :altitude 275;
     :depth 53;
     :type 'caldera' .
 <http://abc/mondial/10/lakes/LacLeman> rdf:type :Lake;
     :name 'Lac Leman';
     :longitude 6.5;
     :latitude 46.5;
     :area 581;
     :altitude 372;
     :depth 310 .
 <http://abc/mondial/10/lakes/Zurichsee> rdf:type :Lake;
     :name 'Zurichsee';
     :longitude 8.236313;
     :latitude 47.501794;
     :area 88;
     :altitude 406;
     :depth 136 .
 <http://abc/mondial/10/lakes/Thunersee> rdf:type :Lake;
     :name 'Thunersee';
     :longitude 7.716;
     :latitude 46.69;
     :area 48.3;
     :altitude 558;
     :depth 217 .
 <http://abc/mondial/10/lakes/Brienzersee> rdf:type :Lake;
     :name 'Brienzersee';
     :longitude 7.97;
     :latitude 46.73;
     :area 29.8;
     :altitude 564;
     :depth 260 .
 <http://abc/mondial/10/lakes/Vierwaldstattersee> rdf:type :Lake;
     :name 'Vierwaldstattersee';
     :longitude 8.4;
     :latitude 47.0;
     :area 113.7;
     :altitude 434;
     :depth 214 .
 <http://abc/mondial/10/lakes/LagodiGarda> rdf:type :Lake;
     :name 'Lago di Garda ';
     :longitude 10.65;
     :latitude 45.6;
     :area 370;
     :altitude 65;
     :depth 346 .
 <http://abc/mondial/10/lakes/LagoMaggiore> rdf:type :Lake;
     :name 'Lago Maggiore';
     :longitude 8.6;
     :latitude 45.95;
     :area 216;
     :altitude 193;
     :depth 372 .
 <http://abc/mondial/10/lakes/LagodiComo> rdf:type :Lake;
     :name 'Lago di Como';
     :longitude 9.3;
     :latitude 46;
     :area 146;
     :altitude 197;
     :depth 425 .
 <http://abc/mondial/10/lakes/LagoTrasimeno> rdf:type :Lake;
     :name 'Lago Trasimeno';
     :longitude 12.1;
     :latitude 43.1;
     :area 128;
     :altitude 259;
     :depth 7;
     :type 'caldera' .
 <http://abc/mondial/10/lakes/LagodiBolsena> rdf:type :Lake;
     :name 'Lago di Bolsena';
     :longitude 11.9;
     :latitude 42.6;
     :area 114;
     :altitude 335;
     :depth 151;
     :type 'caldera' .
 <http://abc/mondial/10/lakes/LagodiBracciano> rdf:type :Lake;
     :name 'Lago di Bracciano';
     :longitude 12.2;
     :latitude 42.1;
     :area 57;
     :altitude 164;
     :depth 160;
     :type 'caldera' .
 <http://abc/mondial/10/lakes/Neusiedlersee> rdf:type :Lake;
     :name 'Neusiedlersee';
     :longitude 16.7;
     :latitude 47.8;
     :area 320;
     :altitude 115.5;
     :depth 1.8 .
 <http://abc/mondial/10/lakes/Balaton> rdf:type :Lake;
     :name 'Balaton';
     :longitude 17.6;
     :latitude 46.8;
     :area 594;
     :altitude 104;
     :depth 12.5 .
 <http://abc/mondial/10/lakes/LakeSkutari> rdf:type :Lake;
     :name 'Lake Skutari';
     :longitude 19.3;
     :latitude 42.2;
     :area 368;
     :altitude 7;
     :depth 44 .
 <http://abc/mondial/10/lakes/LakePrespa> rdf:type :Lake;
     :name 'Lake Prespa';
     :longitude 21.0;
     :latitude 40.9;
     :area 273;
     :altitude 849;
     :depth 54 .
 <http://abc/mondial/10/lakes/LakeOhrid> rdf:type :Lake;
     :name 'Lake Ohrid';
     :longitude 20.7;
     :latitude 41.0;
     :area 367;
     :altitude 695;
     :depth 289 .
 <http://abc/mondial/10/lakes/LakeVan> rdf:type :Lake;
     :name 'Lake Van';
     :longitude 42.9;
     :latitude 38.6;
     :area 3740;
     :altitude 1719;
     :depth 457;
     :type 'salt' .
 <http://abc/mondial/10/lakes/LakeKeban> rdf:type :Lake;
     :name 'Lake Keban';
     :longitude 38.75;
     :latitude 38.8;
     :area 675 .
 <http://abc/mondial/10/lakes/CaspianSea> rdf:type :Lake;
     :name 'Caspian Sea';
     :longitude 51;
     :latitude 41;
     :area 386400;
     :altitude -28;
     :depth 995;
     :type 'salt' .
 <http://abc/mondial/10/lakes/OzeroLadoga> rdf:type :Lake;
     :name 'Ozero Ladoga';
     :longitude 31.53;
     :latitude 60.82;
     :area 18400;
     :altitude 4;
     :depth 225 .
 <http://abc/mondial/10/lakes/OzeroOnega> rdf:type :Lake;
     :name 'Ozero Onega';
     :longitude 35.485;
     :latitude 61.67;
     :area 9.616;
     :altitude 33;
     :depth 127 .
 <http://abc/mondial/10/lakes/OzeroPskovskoje> rdf:type :Lake;
     :name 'Ozero Pskovskoje';
     :longitude 27.49;
     :latitude 58.68;
     :area 3555;
     :altitude 30;
     :depth 14.6 .
 <http://abc/mondial/10/lakes/OzeroBaikal> rdf:type :Lake;
     :name 'Ozero Baikal';
     :longitude 108;
     :latitude 53;
     :area 31492;
     :altitude 455;
     :depth 1637 .
 <http://abc/mondial/10/lakes/OzeroTaimyr> rdf:type :Lake;
     :name 'Ozero Taimyr';
     :longitude 101.6;
     :latitude 74.5;
     :area 4560;
     :altitude 5;
     :depth 26 .
 <http://abc/mondial/10/lakes/OzeroChanka> rdf:type :Lake;
     :name 'Ozero Chanka';
     :longitude 132.4;
     :latitude 45;
     :area 4400 .
 <http://abc/mondial/10/lakes/OzeroTschany> rdf:type :Lake;
     :name 'Ozero Tschany';
     :longitude 77.5;
     :latitude 54.9;
     :area 2500;
     :altitude 10;
     :depth 106 .
 <http://abc/mondial/10/islands/Svalbard> rdf:type :Island;
     :name 'Svalbard';
     :longitude 18.2;
     :latitude 78.9;
     :area 39044;
     :height 1717 .
 <http://abc/mondial/10/islands/Iceland> rdf:type :Island;
     :name 'Iceland';
     :longitude -18;
     :latitude 65;
     :area 102829;
     :height 2119;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Aust-Vagoey> rdf:type :Island;
     :name 'Aust-Vagoey';
     :longitude 14.6;
     :latitude 68.3;
     :area 526;
     :height 1146 .
 <http://abc/mondial/10/islands/Streymoy> rdf:type :Island;
     :name 'Streymoy';
     :longitude -7;
     :latitude 62;
     :area 373;
     :height 789 .
 <http://abc/mondial/10/islands/Ireland> rdf:type :Island;
     :name 'Ireland';
     :longitude -7.8;
     :latitude 53.5;
     :area 84421;
     :height 1041 .
 <http://abc/mondial/10/islands/GreatBritain> rdf:type :Island;
     :name 'Great Britain';
     :longitude -1.5;
     :latitude 53;
     :area 229850;
     :height 1344 .
 <http://abc/mondial/10/islands/ShetlandMainland> rdf:type :Island;
     :name 'Shetland Mainland';
     :longitude -1.3;
     :latitude 60.3;
     :area 970;
     :height 449 .
 <http://abc/mondial/10/islands/OrkneyMainland> rdf:type :Island;
     :name 'Orkney Mainland';
     :longitude -3.1;
     :latitude 59;
     :area 492 .
 <http://abc/mondial/10/islands/SouthRonaldsay> rdf:type :Island;
     :name 'South Ronaldsay';
     :longitude -3.1;
     :latitude 58.6;
     :area 50 .
 <http://abc/mondial/10/islands/Hoy> rdf:type :Island;
     :name 'Hoy';
     :longitude -3.2;
     :latitude 59.1;
     :area 143 .
 <http://abc/mondial/10/islands/Westray> rdf:type :Island;
     :name 'Westray';
     :longitude -3;
     :latitude 59.4;
     :area 47 .
 <http://abc/mondial/10/islands/Barra> rdf:type :Island;
     :name 'Barra';
     :longitude -7.7;
     :latitude 57;
     :area 91 .
 <http://abc/mondial/10/islands/SouthUist> rdf:type :Island;
     :name 'South Uist';
     :longitude -7.2;
     :latitude 57.2;
     :area 320 .
 <http://abc/mondial/10/islands/Benbecula> rdf:type :Island;
     :name 'Benbecula';
     :longitude -7.3;
     :latitude 57.45;
     :area 82 .
 <http://abc/mondial/10/islands/NorthUist> rdf:type :Island;
     :name 'North Uist';
     :longitude -7.1;
     :latitude 57.4;
     :area 303 .
 <http://abc/mondial/10/islands/LewisandHarris> rdf:type :Island;
     :name 'Lewis and Harris';
     :longitude -6.8;
     :latitude 57.9;
     :area 2170 .
 <http://abc/mondial/10/islands/Skye> rdf:type :Island;
     :name 'Skye';
     :longitude -6.3;
     :latitude 57.3;
     :area 1385;
     :height 993 .
 <http://abc/mondial/10/islands/Rhum> rdf:type :Island;
     :name 'Rhum';
     :longitude -6.3;
     :latitude 57;
     :area 104;
     :height 810;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Mull> rdf:type :Island;
     :name 'Mull';
     :longitude 6;
     :latitude 56.3;
     :area 910 .
 <http://abc/mondial/10/islands/Islay> rdf:type :Island;
     :name 'Islay';
     :longitude 7.0;
     :latitude 62.1;
     :area 619.6;
     :height 491 .
 <http://abc/mondial/10/islands/Jura> rdf:type :Island;
     :name 'Jura';
     :longitude -6;
     :latitude 56;
     :area 367;
     :height 785 .
 <http://abc/mondial/10/islands/Arran> rdf:type :Island;
     :name 'Arran';
     :longitude -5.5;
     :latitude 55.3;
     :area 430;
     :height 874 .
 <http://abc/mondial/10/islands/IsleofMan> rdf:type :Island;
     :name 'Isle of Man';
     :longitude -4.5;
     :latitude 54.1;
     :area 588;
     :height 621 .
 <http://abc/mondial/10/islands/Anglesey> rdf:type :Island;
     :name 'Anglesey';
     :longitude -4.4;
     :latitude 53.3;
     :area 715 .
 <http://abc/mondial/10/islands/IsleofWight> rdf:type :Island;
     :name 'Isle of Wight';
     :longitude -1.3;
     :latitude 50.6;
     :area 381 .
 <http://abc/mondial/10/islands/Lundy> rdf:type :Island;
     :name 'Lundy';
     :longitude -4.5;
     :latitude 51;
     :area 4.24 .
 <http://abc/mondial/10/islands/BishopRock> rdf:type :Island;
     :name 'Bishop Rock';
     :longitude -6.3;
     :latitude 50 .
 <http://abc/mondial/10/islands/Guernsey> rdf:type :Island;
     :name 'Guernsey';
     :longitude -2.6;
     :latitude 49.6;
     :area 194 .
 <http://abc/mondial/10/islands/Jersey> rdf:type :Island;
     :name 'Jersey';
     :longitude -2.1;
     :latitude 49.2;
     :area 117 .
 <http://abc/mondial/10/islands/Gotland> rdf:type :Island;
     :name 'Gotland';
     :longitude 18.5;
     :latitude 57.5;
     :area 3140 .
 <http://abc/mondial/10/islands/Oeland> rdf:type :Island;
     :name 'Oeland';
     :longitude 17;
     :latitude 57;
     :area 1344 .
 <http://abc/mondial/10/islands/Aland> rdf:type :Island;
     :name 'Aland';
     :longitude 20;
     :latitude 60.1;
     :area 650 .
 <http://abc/mondial/10/islands/Dagoe> rdf:type :Island;
     :name 'Dagoe';
     :longitude 22.7;
     :latitude 58.8;
     :area 965 .
 <http://abc/mondial/10/islands/Oesel> rdf:type :Island;
     :name 'Oesel';
     :longitude 22;
     :latitude 58.3;
     :area 2714;
     :height 54 .
 <http://abc/mondial/10/islands/Seeland> rdf:type :Island;
     :name 'Seeland';
     :longitude 12;
     :latitude 55.3;
     :area 7439 .
 <http://abc/mondial/10/islands/Fuenen> rdf:type :Island;
     :name 'Fuenen';
     :longitude 10.25;
     :latitude 55.35;
     :area 2976 .
 <http://abc/mondial/10/islands/Langeland> rdf:type :Island;
     :name 'Langeland';
     :longitude 10.5;
     :latitude 55;
     :area 284 .
 <http://abc/mondial/10/islands/Falster> rdf:type :Island;
     :name 'Falster';
     :longitude 12;
     :latitude 54.8;
     :area 514 .
 <http://abc/mondial/10/islands/Lolland> rdf:type :Island;
     :name 'Lolland';
     :longitude 11.5;
     :latitude 54.4;
     :area 1241 .
 <http://abc/mondial/10/islands/Bornholm> rdf:type :Island;
     :name 'Bornholm';
     :longitude 14.9;
     :latitude 55.1;
     :area 588;
     :height 162 .
 <http://abc/mondial/10/islands/Helgoland> rdf:type :Island;
     :name 'Helgoland';
     :longitude 7.9;
     :latitude 54.2;
     :area 1.7;
     :height 61.3 .
 <http://abc/mondial/10/islands/Fehmarn> rdf:type :Island;
     :name 'Fehmarn';
     :longitude 11.2;
     :latitude 54.4;
     :area 185;
     :height 27.2 .
 <http://abc/mondial/10/islands/Rugen> rdf:type :Island;
     :name 'Rugen';
     :longitude 13.4;
     :latitude 54.5;
     :area 926;
     :height 161 .
 <http://abc/mondial/10/islands/Usedom> rdf:type :Island;
     :name 'Usedom';
     :longitude 14.1;
     :latitude 53.9;
     :area 445 .
 <http://abc/mondial/10/islands/Sylt> rdf:type :Island;
     :name 'Sylt';
     :longitude 8.3;
     :latitude 54.9;
     :area 99;
     :height 52.5 .
 <http://abc/mondial/10/islands/Fohr> rdf:type :Island;
     :name 'Fohr';
     :longitude 8.5;
     :latitude 54.7;
     :area 82;
     :height 13 .
 <http://abc/mondial/10/islands/Amrum> rdf:type :Island;
     :name 'Amrum';
     :longitude 8.3;
     :latitude 54.65;
     :area 20.5;
     :height 32 .
 <http://abc/mondial/10/islands/Pellworm> rdf:type :Island;
     :name 'Pellworm';
     :longitude 8.6;
     :latitude 54.5;
     :area 37.4;
     :height 2 .
 <http://abc/mondial/10/islands/Wangerooge> rdf:type :Island;
     :name 'Wangerooge';
     :longitude 7.9;
     :latitude 53.8;
     :area 7.9;
     :height 17 .
 <http://abc/mondial/10/islands/Spiekeroog> rdf:type :Island;
     :name 'Spiekeroog';
     :longitude 7.6;
     :latitude 53.8;
     :area 18.2;
     :height 3 .
 <http://abc/mondial/10/islands/Langeoog> rdf:type :Island;
     :name 'Langeoog';
     :longitude 7.5;
     :latitude 53.65;
     :area 20;
     :height 5 .
 <http://abc/mondial/10/islands/Baltrum> rdf:type :Island;
     :name 'Baltrum';
     :longitude 7.4;
     :latitude 53.6;
     :area 6.5;
     :height 5 .
 <http://abc/mondial/10/islands/Norderney> rdf:type :Island;
     :name 'Norderney';
     :longitude 7.9;
     :latitude 53.7;
     :area 26.3;
     :height 5 .
 <http://abc/mondial/10/islands/Juist> rdf:type :Island;
     :name 'Juist';
     :longitude 7.0;
     :latitude 53.6;
     :area 16.4;
     :height 3 .
 <http://abc/mondial/10/islands/Borkum> rdf:type :Island;
     :name 'Borkum';
     :longitude 6.7;
     :latitude 53.6;
     :area 31;
     :height 6 .
 <http://abc/mondial/10/islands/Schiermonnikoog> rdf:type :Island;
     :name 'Schiermonnikoog';
     :longitude 6.2;
     :latitude 53.5;
     :area 40 .
 <http://abc/mondial/10/islands/Ameland> rdf:type :Island;
     :name 'Ameland';
     :longitude 5.75;
     :latitude 53.5;
     :area 57.6 .
 <http://abc/mondial/10/islands/Terschelling> rdf:type :Island;
     :name 'Terschelling';
     :longitude 5.3;
     :latitude 53.4;
     :area 88 .
 <http://abc/mondial/10/islands/Vlieland> rdf:type :Island;
     :name 'Vlieland';
     :longitude 5;
     :latitude 53.25;
     :area 40 .
 <http://abc/mondial/10/islands/Texel> rdf:type :Island;
     :name 'Texel';
     :longitude 4.8;
     :latitude 53.1;
     :area 162;
     :height 15 .
 <http://abc/mondial/10/islands/Korfu> rdf:type :Island;
     :name 'Korfu';
     :longitude 19.8;
     :latitude 39.6;
     :area 593;
     :height 906 .
 <http://abc/mondial/10/islands/Lefkas> rdf:type :Island;
     :name 'Lefkas';
     :longitude 20.6;
     :latitude 38.7;
     :area 293;
     :height 1158 .
 <http://abc/mondial/10/islands/Kefallinia> rdf:type :Island;
     :name 'Kefallinia';
     :longitude 20.6;
     :latitude 38.2;
     :area 689;
     :height 1628 .
 <http://abc/mondial/10/islands/Zakinthos> rdf:type :Island;
     :name 'Zakinthos';
     :longitude 20.75;
     :latitude 37.8;
     :area 406;
     :height 756 .
 <http://abc/mondial/10/islands/Kreta> rdf:type :Island;
     :name 'Kreta';
     :longitude 25;
     :latitude 37;
     :area 8331;
     :height 2456 .
 <http://abc/mondial/10/islands/Chios> rdf:type :Island;
     :name 'Chios';
     :longitude 26.2;
     :latitude 38.4;
     :area 843;
     :height 1297 .
 <http://abc/mondial/10/islands/Samos> rdf:type :Island;
     :name 'Samos';
     :longitude 26.8;
     :latitude 37.7;
     :area 478;
     :height 1434 .
 <http://abc/mondial/10/islands/Ikaria> rdf:type :Island;
     :name 'Ikaria';
     :longitude 26.2;
     :latitude 37.6;
     :area 255;
     :height 1037 .
 <http://abc/mondial/10/islands/Lesbos> rdf:type :Island;
     :name 'Lesbos';
     :longitude 26.3;
     :latitude 39.2;
     :area 1636;
     :height 968 .
 <http://abc/mondial/10/islands/Kos> rdf:type :Island;
     :name 'Kos';
     :longitude 27.1;
     :latitude 36.8;
     :area 287;
     :height 846 .
 <http://abc/mondial/10/islands/Rhodos> rdf:type :Island;
     :name 'Rhodos';
     :longitude 28;
     :latitude 36.2;
     :area 1401;
     :height 1215 .
 <http://abc/mondial/10/islands/Cyprus> rdf:type :Island;
     :name 'Cyprus';
     :longitude 33.2;
     :latitude 35.4;
     :area 9251;
     :height 1952 .
 <http://abc/mondial/10/islands/Alicudi> rdf:type :Island;
     :name 'Alicudi';
     :longitude 14.4;
     :latitude 38.6;
     :area 5.2;
     :height 675;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Filicudi> rdf:type :Island;
     :name 'Filicudi';
     :longitude 14.55;
     :latitude 38.6;
     :area 9.5;
     :height 774;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Salina> rdf:type :Island;
     :name 'Salina';
     :longitude 14.9;
     :latitude 38.6;
     :area 26.8;
     :height 962;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Lipari> rdf:type :Island;
     :name 'Lipari';
     :longitude 14.95;
     :latitude 38.5;
     :area 37.5;
     :height 602;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Vulcano> rdf:type :Island;
     :name 'Vulcano';
     :longitude 15.0;
     :latitude 38.4;
     :area 21.2;
     :height 499;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Panarea> rdf:type :Island;
     :name 'Panarea';
     :longitude 15.05;
     :latitude 38.65;
     :area 3.4;
     :height 421;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Stromboli> rdf:type :Island;
     :name 'Stromboli';
     :longitude 15.15;
     :latitude 38.8;
     :area 12.6;
     :height 926;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Lampedusa> rdf:type :Island;
     :name 'Lampedusa';
     :longitude 13.2;
     :latitude 35.4;
     :area 20;
     :height 113;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Linosa> rdf:type :Island;
     :name 'Linosa';
     :longitude 13.85;
     :latitude 35.85;
     :area 5;
     :height 195;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Sicilia> rdf:type :Island;
     :name 'Sicilia';
     :longitude 14;
     :latitude 37;
     :area 25462;
     :height 3323 .
 <http://abc/mondial/10/islands/Malta> rdf:type :Island;
     :name 'Malta';
     :longitude 14.5;
     :latitude 35.9;
     :area 246;
     :height 252 .
 <http://abc/mondial/10/islands/Gozo> rdf:type :Island;
     :name 'Gozo';
     :longitude 14.3;
     :latitude 36.05;
     :area 67;
     :height 176 .
 <http://abc/mondial/10/islands/Sardegna> rdf:type :Island;
     :name 'Sardegna';
     :longitude 9;
     :latitude 40;
     :area 24090;
     :height 1834 .
 <http://abc/mondial/10/islands/Corse> rdf:type :Island;
     :name 'Corse';
     :longitude 8.4;
     :latitude 41.4;
     :area 8680;
     :height 2706 .
 <http://abc/mondial/10/islands/Menorca> rdf:type :Island;
     :name 'Menorca';
     :longitude 4;
     :latitude 40;
     :area 760;
     :height 358 .
 <http://abc/mondial/10/islands/Mallorca> rdf:type :Island;
     :name 'Mallorca';
     :longitude 3;
     :latitude 39.3;
     :area 3618;
     :height 1445 .
 <http://abc/mondial/10/islands/Ibiza> rdf:type :Island;
     :name 'Ibiza';
     :longitude 1.5;
     :latitude 38.5;
     :area 572;
     :height 476 .
 <http://abc/mondial/10/islands/Formentera> rdf:type :Island;
     :name 'Formentera';
     :longitude 1.5;
     :latitude 38.0;
     :area 83;
     :height 192 .
 <http://abc/mondial/10/islands/Lanzarote> rdf:type :Island;
     :name 'Lanzarote';
     :longitude -13.6;
     :latitude 29;
     :area 846;
     :height 671;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Fuerteventura> rdf:type :Island;
     :name 'Fuerteventura';
     :longitude -14;
     :latitude 28.4;
     :area 1660;
     :height 807;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/GranCanaria> rdf:type :Island;
     :name 'Gran Canaria';
     :longitude -15.6;
     :latitude 28;
     :area 1560;
     :height 1949;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Teneriffa> rdf:type :Island;
     :name 'Teneriffa';
     :longitude -16.6;
     :latitude 28.3;
     :area 2034;
     :height 3718;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Gomera> rdf:type :Island;
     :name 'Gomera';
     :longitude -17.3;
     :latitude 28.1;
     :area 369;
     :height 1487;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Hierro> rdf:type :Island;
     :name 'Hierro';
     :longitude -18;
     :latitude 27.7;
     :area 268;
     :height 1500;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/LaPalma> rdf:type :Island;
     :name 'La Palma';
     :longitude -17.9;
     :latitude 28.7;
     :area 708;
     :height 2426;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Madeira> rdf:type :Island;
     :name 'Madeira';
     :longitude -16;
     :latitude 31;
     :area 794;
     :height 1861;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/PortoSanto> rdf:type :Island;
     :name 'Porto Santo';
     :longitude -16.35;
     :latitude 33;
     :area 42;
     :height 517;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/SaoMiguel> rdf:type :Island;
     :name 'Sao Miguel';
     :longitude -25.5;
     :latitude 37.7;
     :area 747;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/SantaMaria> rdf:type :Island;
     :name 'Santa Maria';
     :longitude -25.1;
     :latitude 37;
     :area 97;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Terceira> rdf:type :Island;
     :name 'Terceira';
     :longitude -27.2;
     :latitude 38.7;
     :area 400;
     :height 1022;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/SaoJorge> rdf:type :Island;
     :name 'Sao Jorge';
     :longitude -28;
     :latitude 38.6;
     :area 233.5;
     :height 1053;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Pico> rdf:type :Island;
     :name 'Pico';
     :longitude -28.4;
     :latitude 38.5;
     :area 442;
     :height 2351;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Faial> rdf:type :Island;
     :name 'Faial';
     :longitude -28.7;
     :latitude 38.6;
     :area 172;
     :height 1043;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Graciosa> rdf:type :Island;
     :name 'Graciosa';
     :longitude -28;
     :latitude 39;
     :area 61;
     :height 402;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Flores> rdf:type :Island;
     :name 'Flores';
     :longitude -31.2;
     :latitude 39.5;
     :area 143;
     :height 914;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Corvo> rdf:type :Island;
     :name 'Corvo';
     :longitude -31.1;
     :latitude 39.7;
     :area 17.5;
     :height 718;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/KotelnyIsland> rdf:type :Island;
     :name 'Kotelny Island';
     :longitude 141;
     :latitude 75.4;
     :area 11665;
     :height 374 .
 <http://abc/mondial/10/islands/Paramuschir> rdf:type :Island;
     :name 'Paramuschir';
     :longitude 155.75;
     :latitude 50.5;
     :area 2042;
     :height 1816;
     :type 'volcanic' .
 <http://abc/mondial/10/islands/Olkhon> rdf:type :Island;
     :name 'Olkhon';
     :longitude 107.4;
     :latitude 53.15;
     :area 730;
     :height 1276 .
 <http://abc/mondial/10/islands/Sachalin> rdf:type :Island;
     :name 'Sachalin';
     :longitude 143;
     :latitude 50;
     :area 76400;
     :height 1609;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/Oeraefajoekull> rdf:type :Mountain;
     :name 'Oeraefajoekull';
     :longitude -17;
     :latitude 64.1;
     :height 2119;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/Snoefell> rdf:type :Mountain;
     :name 'Snoefell';
     :longitude -15.2;
     :latitude 64.5;
     :height 1833;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/Haltiatunturi> rdf:type :Mountain;
     :name 'Haltiatunturi';
     :longitude 21.4;
     :latitude 67;
     :height 1328 .
 <http://abc/mondial/10/mountains/Kebnekaise> rdf:type :Mountain;
     :name 'Kebnekaise';
     :longitude 18.3;
     :latitude 67.5;
     :height 2114 .
 <http://abc/mondial/10/mountains/Sarektjokko> rdf:type :Mountain;
     :name 'Sarektjokko';
     :longitude 17.4;
     :latitude 67.3;
     :height 2090 .
 <http://abc/mondial/10/mountains/Portefjaellen> rdf:type :Mountain;
     :name 'Portefjaellen';
     :longitude 17.4;
     :latitude 67.1;
     :height 2021 .
 <http://abc/mondial/10/mountains/Tarrekaise> rdf:type :Mountain;
     :name 'Tarrekaise';
     :longitude 17.3;
     :latitude 67;
     :height 1850 .
 <http://abc/mondial/10/mountains/Sulitjelma> rdf:type :Mountain;
     :name 'Sulitjelma';
     :longitude 16.2;
     :latitude 67.1;
     :height 1914 .
 <http://abc/mondial/10/mountains/Galdhoeppig> rdf:type :Mountain;
     :name 'Galdhoeppig';
     :longitude 8;
     :latitude 61.4;
     :height 2469 .
 <http://abc/mondial/10/mountains/Jostedalsbre> rdf:type :Mountain;
     :name 'Jostedalsbre';
     :longitude 5.5;
     :latitude 61.4;
     :height 2083 .
 <http://abc/mondial/10/mountains/Glittertind> rdf:type :Mountain;
     :name 'Glittertind';
     :longitude 8.1;
     :latitude 61.4;
     :height 2452 .
 <http://abc/mondial/10/mountains/Joekul> rdf:type :Mountain;
     :name 'Joekul';
     :longitude 7.2;
     :latitude 60.3;
     :height 1876 .
 <http://abc/mondial/10/mountains/Snoehetta> rdf:type :Mountain;
     :name 'Snoehetta';
     :longitude 9;
     :latitude 62.1;
     :height 2286 .
 <http://abc/mondial/10/mountains/BenNevis> rdf:type :Mountain;
     :name 'Ben Nevis';
     :longitude -5.0;
     :latitude 56.8;
     :height 1344 .
 <http://abc/mondial/10/mountains/Feldberg> rdf:type :Mountain;
     :name 'Feldberg';
     :longitude 7.5;
     :latitude 47.5;
     :height 1493 .
 <http://abc/mondial/10/mountains/Brocken> rdf:type :Mountain;
     :name 'Brocken';
     :longitude 10.6;
     :latitude 51.8;
     :height 1141 .
 <http://abc/mondial/10/mountains/GrosserArber> rdf:type :Mountain;
     :name 'Grosser Arber';
     :longitude 13;
     :latitude 49.1;
     :height 1456 .
 <http://abc/mondial/10/mountains/Zugspitze> rdf:type :Mountain;
     :name 'Zugspitze';
     :longitude 11.1;
     :latitude 47.3;
     :height 2963 .
 <http://abc/mondial/10/mountains/MontBlanc> rdf:type :Mountain;
     :name 'Mont Blanc';
     :longitude 6.8;
     :latitude 45.8;
     :height 4808 .
 <http://abc/mondial/10/mountains/BarredesEcrins> rdf:type :Mountain;
     :name 'Barre des Ecrins';
     :longitude 6.3;
     :latitude 44.9;
     :height 4101 .
 <http://abc/mondial/10/mountains/GrandCombin> rdf:type :Mountain;
     :name 'GrandCombin';
     :longitude 7.3;
     :latitude 45.9;
     :height 4314 .
 <http://abc/mondial/10/mountains/Matterhorn> rdf:type :Mountain;
     :name 'Matterhorn';
     :longitude 7.56;
     :latitude 46;
     :height 4478 .
 <http://abc/mondial/10/mountains/MonteRosa> rdf:type :Mountain;
     :name 'Monte Rosa';
     :longitude 7.9;
     :latitude 45.9;
     :height 4634 .
 <http://abc/mondial/10/mountains/Finsteraarhorn> rdf:type :Mountain;
     :name 'Finsteraarhorn';
     :longitude 8.1;
     :latitude 46.5;
     :height 4274 .
 <http://abc/mondial/10/mountains/GranParadiso> rdf:type :Mountain;
     :name 'GranParadiso';
     :longitude 7.25;
     :latitude 45.5;
     :height 4061 .
 <http://abc/mondial/10/mountains/PizBernina> rdf:type :Mountain;
     :name 'Piz Bernina';
     :longitude 9.9;
     :latitude 46.4;
     :height 4048 .
 <http://abc/mondial/10/mountains/Crap_Sogn_Gion> rdf:type :Mountain;
     :name 'Crap_Sogn_Gion';
     :longitude 9.2;
     :latitude 46.85;
     :height 2228 .
 <http://abc/mondial/10/mountains/Marmolata> rdf:type :Mountain;
     :name 'Marmolata';
     :longitude 11.85;
     :latitude 46.4;
     :height 3343 .
 <http://abc/mondial/10/mountains/Grossglockner> rdf:type :Mountain;
     :name 'Grossglockner';
     :longitude 12.5;
     :latitude 47;
     :height 3797 .
 <http://abc/mondial/10/mountains/Hochgolling> rdf:type :Mountain;
     :name 'Hochgolling';
     :longitude 13.75;
     :latitude 47.3;
     :height 2862 .
 <http://abc/mondial/10/mountains/GrandBallon> rdf:type :Mountain;
     :name 'Grand Ballon';
     :longitude 7.1;
     :latitude 47.9;
     :height 1424 .
 <http://abc/mondial/10/mountains/PuyDeDome> rdf:type :Mountain;
     :name 'Puy De Dome';
     :longitude 3;
     :latitude 45.8;
     :height 1465;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/PuydeSancy> rdf:type :Mountain;
     :name 'Puy de Sancy';
     :longitude 2.8;
     :latitude 45.5;
     :height 1885;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/Vignemale> rdf:type :Mountain;
     :name 'Vignemale';
     :longitude 0.15;
     :latitude 42.8;
     :height 3298 .
 <http://abc/mondial/10/mountains/PicodeAneto> rdf:type :Mountain;
     :name 'Pico de Aneto';
     :longitude 0.65;
     :latitude 42.6;
     :height 3404 .
 <http://abc/mondial/10/mountains/TorredeCerredo> rdf:type :Mountain;
     :name 'Torre de Cerredo';
     :longitude 4.85;
     :latitude 43.2;
     :height 2648 .
 <http://abc/mondial/10/mountains/PicodeAlmanzor> rdf:type :Mountain;
     :name 'Pico de Almanzor';
     :longitude -5.3;
     :latitude 40.25;
     :height 2648 .
 <http://abc/mondial/10/mountains/Moncayo> rdf:type :Mountain;
     :name 'Moncayo';
     :longitude 1.85;
     :latitude 41.8;
     :height 2313 .
 <http://abc/mondial/10/mountains/Mulhacen> rdf:type :Mountain;
     :name 'Mulhacen';
     :longitude 3.3;
     :latitude 37;
     :height 3482 .
 <http://abc/mondial/10/mountains/TorredeEstrela> rdf:type :Mountain;
     :name 'Torre de Estrela';
     :longitude -7.6;
     :latitude 40.3;
     :height 1993 .
 <http://abc/mondial/10/mountains/MonteCinto> rdf:type :Mountain;
     :name 'Monte Cinto';
     :longitude 8.9;
     :latitude 42.4;
     :height 2706 .
 <http://abc/mondial/10/mountains/GranSasso> rdf:type :Mountain;
     :name 'Gran Sasso';
     :longitude 13.55;
     :latitude 42.5;
     :height 2912 .
 <http://abc/mondial/10/mountains/MonteFalterona> rdf:type :Mountain;
     :name 'Monte Falterona';
     :longitude 11.7;
     :latitude 43.9;
     :height 1654 .
 <http://abc/mondial/10/mountains/Vesuv> rdf:type :Mountain;
     :name 'Vesuv';
     :longitude 14.4;
     :latitude 40.8;
     :height 1281;
     :type 'volcano' .
 <http://abc/mondial/10/mountains/Etna> rdf:type :Mountain;
     :name 'Etna';
     :longitude 15.0;
     :latitude 37.7;
     :height 3323;
     :type 'volcano' .
 <http://abc/mondial/10/mountains/Schneekoppe> rdf:type :Mountain;
     :name 'Schneekoppe';
     :longitude 15.7;
     :latitude 50.7;
     :height 1602 .
 <http://abc/mondial/10/mountains/GerlachovskyStit> rdf:type :Mountain;
     :name 'GerlachovskyStit';
     :longitude 20.1;
     :latitude 49.2;
     :height 2655 .
 <http://abc/mondial/10/mountains/Moldoveanu> rdf:type :Mountain;
     :name 'Moldoveanu';
     :longitude 24.7;
     :latitude 45.6;
     :height 2544 .
 <http://abc/mondial/10/mountains/Musala> rdf:type :Mountain;
     :name 'Musala';
     :longitude 23.6;
     :latitude 42.2;
     :height 2925 .
 <http://abc/mondial/10/mountains/Jezerce> rdf:type :Mountain;
     :name 'Jezerce';
     :longitude 19.4;
     :latitude 42.3;
     :height 2694 .
 <http://abc/mondial/10/mountains/Korab> rdf:type :Mountain;
     :name 'Korab';
     :longitude 20.3;
     :latitude 41.4;
     :height 2751 .
 <http://abc/mondial/10/mountains/Olymp> rdf:type :Mountain;
     :name 'Olymp';
     :longitude 22.35;
     :latitude 40.1;
     :height 2917 .
 <http://abc/mondial/10/mountains/Psiloritis> rdf:type :Mountain;
     :name 'Psiloritis';
     :longitude 24.7;
     :latitude 35.2;
     :height 2456 .
 <http://abc/mondial/10/mountains/Olympos> rdf:type :Mountain;
     :name 'Olympos';
     :longitude 32.85;
     :latitude 34.9;
     :height 1952 .
 <http://abc/mondial/10/mountains/PicodeTeide> rdf:type :Mountain;
     :name 'Pico de Teide';
     :longitude -16.6;
     :latitude 28.3;
     :height 3718;
     :type 'volcano' .
 <http://abc/mondial/10/mountains/PicodelosNieves> rdf:type :Mountain;
     :name 'Pico de los Nieves';
     :longitude -15.6;
     :latitude 25.95;
     :height 1949;
     :type 'volcano' .
 <http://abc/mondial/10/mountains/RoquedelosMuchachos> rdf:type :Mountain;
     :name 'Roque de los Muchachos';
     :longitude -17.9;
     :latitude 28.75;
     :height 2426;
     :type 'volcano' .
 <http://abc/mondial/10/mountains/PicoRuivo> rdf:type :Mountain;
     :name 'Pico Ruivo';
     :longitude -16;
     :latitude 31;
     :height 1861;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/Pico> rdf:type :Mountain;
     :name 'Pico';
     :longitude -28.4;
     :latitude 38.5;
     :height 2351;
     :type 'volcano' .
 <http://abc/mondial/10/mountains/Narodnaja> rdf:type :Mountain;
     :name 'Narodnaja';
     :longitude 60.1;
     :latitude 65.0;
     :height 1895 .
 <http://abc/mondial/10/mountains/Demirkazik> rdf:type :Mountain;
     :name 'Demirkazik';
     :longitude 35.2;
     :latitude 37.8;
     :height 3756 .
 <http://abc/mondial/10/mountains/Ararat> rdf:type :Mountain;
     :name 'Ararat';
     :longitude 44.3;
     :latitude 39.7;
     :height 5165;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/Elbrus> rdf:type :Mountain;
     :name 'Elbrus';
     :longitude 42.26;
     :latitude 43.21;
     :height 5642;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/Kasbek> rdf:type :Mountain;
     :name 'Kasbek';
     :longitude 44.31;
     :latitude 42.42;
     :height 5033;
     :type 'volcanic' .
 <http://abc/mondial/10/mountains/Zhima> rdf:type :Mountain;
     :name 'Zhima';
     :longitude 107.4;
     :latitude 53.15;
     :height 1276 .
 <http://abc/mondial/10/mountains/Bjelucha> rdf:type :Mountain;
     :name 'Bjelucha';
     :longitude 86.4;
     :latitude 49.48;
     :height 4506 .
 <http://abc/mondial/10/mountains/KljutschewskajaSopka> rdf:type :Mountain;
     :name 'Kljutschewskaja Sopka';
     :longitude 160.6;
     :latitude 56.1;
     :height 4750;
     :type 'volcano' .
 <http://abc/mondial/10/deserts/Ryn> rdf:type :Desert;
     :name 'Ryn';
     :longitude 47;
     :latitude 48;
     :area 80000 .
 <http://abc/mondial/10/rivers/Thjorsa> :flowsInto 
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/rivers/JoekulsaaFjoellum> :flowsInto 
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/rivers/Glomma> :flowsInto 
     <http://abc/mondial/10/seas/Skagerrak> .
 <http://abc/mondial/10/rivers/Lagen> :flowsInto 
     <http://abc/mondial/10/lakes/Mjoesa-See> .
 <http://abc/mondial/10/rivers/Lagen> :flowsInto 
     <http://abc/mondial/10/rivers/Glomma> .
 <http://abc/mondial/10/rivers/Goetaaelv> :flowsInto 
     <http://abc/mondial/10/seas/Kattegat> .
 <http://abc/mondial/10/rivers/Klaraelv> :flowsInto 
     <http://abc/mondial/10/lakes/Vaenern> .
 <http://abc/mondial/10/rivers/Umeaelv> :flowsInto 
     <http://abc/mondial/10/lakes/Storuman> .
 <http://abc/mondial/10/rivers/Umeaelv> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Dalaelv> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Vaesterdalaelv> :flowsInto 
     <http://abc/mondial/10/rivers/Dalaelv> .
 <http://abc/mondial/10/rivers/Oesterdalaelv> :flowsInto 
     <http://abc/mondial/10/lakes/Siljan> .
 <http://abc/mondial/10/rivers/Oesterdalaelv> :flowsInto 
     <http://abc/mondial/10/rivers/Dalaelv> .
 <http://abc/mondial/10/rivers/Paatsjoki> :flowsInto 
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/rivers/Ounasjoki> :flowsInto 
     <http://abc/mondial/10/rivers/Kemijoki> .
 <http://abc/mondial/10/rivers/Kemijoki> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Oulujoki> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Kymijoki> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Kokemaeenjoki> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Vuoksi> :flowsInto 
     <http://abc/mondial/10/lakes/Saimaa> .
 <http://abc/mondial/10/rivers/Vuoksi> :flowsInto 
     <http://abc/mondial/10/lakes/Kallavesi> .
 <http://abc/mondial/10/rivers/Vuoksi> :flowsInto 
     <http://abc/mondial/10/lakes/OzeroLadoga> .
 <http://abc/mondial/10/rivers/Thames> :flowsInto 
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/rivers/Maas> :flowsInto 
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/rivers/Loire> :flowsInto 
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/rivers/Garonne> :flowsInto 
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/rivers/Rhone> :flowsInto 
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/rivers/Rhone> :flowsInto 
     <http://abc/mondial/10/lakes/LacLeman> .
 <http://abc/mondial/10/rivers/Saone> :flowsInto 
     <http://abc/mondial/10/rivers/Rhone> .
 <http://abc/mondial/10/rivers/Doubs> :flowsInto 
     <http://abc/mondial/10/rivers/Saone> .
 <http://abc/mondial/10/rivers/Isere> :flowsInto 
     <http://abc/mondial/10/rivers/Rhone> .
 <http://abc/mondial/10/rivers/Seine> :flowsInto 
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/rivers/Marne> :flowsInto 
     <http://abc/mondial/10/rivers/Seine> .
 <http://abc/mondial/10/rivers/Tajo> :flowsInto 
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/rivers/Douro> :flowsInto 
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/rivers/Guadiana> :flowsInto 
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/rivers/Guadalquivir> :flowsInto 
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/rivers/Ebro> :flowsInto 
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/rivers/Po> :flowsInto 
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/rivers/Ticino> :flowsInto 
     <http://abc/mondial/10/lakes/LagoMaggiore> .
 <http://abc/mondial/10/rivers/Ticino> :flowsInto 
     <http://abc/mondial/10/rivers/Po> .
 <http://abc/mondial/10/rivers/Adda> :flowsInto 
     <http://abc/mondial/10/lakes/LagodiComo> .
 <http://abc/mondial/10/rivers/Adda> :flowsInto 
     <http://abc/mondial/10/rivers/Po> .
 <http://abc/mondial/10/rivers/Mincio> :flowsInto 
     <http://abc/mondial/10/rivers/Po> .
 <http://abc/mondial/10/rivers/Etsch> :flowsInto 
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/rivers/Tiber> :flowsInto 
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/rivers/Arno> :flowsInto 
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/rivers/Donau> :flowsInto 
     <http://abc/mondial/10/seas/BlackSea> .
 <http://abc/mondial/10/rivers/Breg> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Brigach> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Iller> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Lech> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Isar> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Ammer> :flowsInto 
     <http://abc/mondial/10/lakes/Ammersee> .
 <http://abc/mondial/10/rivers/Ammer> :flowsInto 
     <http://abc/mondial/10/rivers/Isar> .
 <http://abc/mondial/10/rivers/Wurm> :flowsInto 
     <http://abc/mondial/10/lakes/StarnbergerSee> .
 <http://abc/mondial/10/rivers/Wurm> :flowsInto 
     <http://abc/mondial/10/rivers/Ammer> .
 <http://abc/mondial/10/rivers/Inn> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Alz> :flowsInto 
     <http://abc/mondial/10/lakes/Chiemsee> .
 <http://abc/mondial/10/rivers/Alz> :flowsInto 
     <http://abc/mondial/10/rivers/Inn> .
 <http://abc/mondial/10/rivers/Salzach> :flowsInto 
     <http://abc/mondial/10/rivers/Inn> .
 <http://abc/mondial/10/rivers/Enns> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/March> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Raab> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Waag> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Drau> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Mur> :flowsInto 
     <http://abc/mondial/10/rivers/Drau> .
 <http://abc/mondial/10/rivers/Theiss> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Save> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Morava> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/WesternMorava> :flowsInto 
     <http://abc/mondial/10/rivers/Morava> .
 <http://abc/mondial/10/rivers/SouthernMorava> :flowsInto 
     <http://abc/mondial/10/rivers/Morava> .
 <http://abc/mondial/10/rivers/Olt> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Pruth> :flowsInto 
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/rivers/Dnjestr> :flowsInto 
     <http://abc/mondial/10/seas/BlackSea> .
 <http://abc/mondial/10/rivers/Weser> :flowsInto 
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/rivers/Aller> :flowsInto 
     <http://abc/mondial/10/rivers/Weser> .
 <http://abc/mondial/10/rivers/Leine> :flowsInto 
     <http://abc/mondial/10/rivers/Aller> .
 <http://abc/mondial/10/rivers/Werra> :flowsInto 
     <http://abc/mondial/10/rivers/Weser> .
 <http://abc/mondial/10/rivers/Fulda> :flowsInto 
     <http://abc/mondial/10/rivers/Weser> .
 <http://abc/mondial/10/rivers/Elbe> :flowsInto 
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/rivers/Moldau> :flowsInto 
     <http://abc/mondial/10/rivers/Elbe> .
 <http://abc/mondial/10/rivers/Rhein> :flowsInto 
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/rivers/Rhein> :flowsInto 
     <http://abc/mondial/10/lakes/Bodensee> .
 <http://abc/mondial/10/rivers/Main> :flowsInto 
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/rivers/Mosel> :flowsInto 
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/rivers/Saar> :flowsInto 
     <http://abc/mondial/10/rivers/Mosel> .
 <http://abc/mondial/10/rivers/Neckar> :flowsInto 
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/rivers/Aare> :flowsInto 
     <http://abc/mondial/10/lakes/Brienzersee> .
 <http://abc/mondial/10/rivers/Aare> :flowsInto 
     <http://abc/mondial/10/lakes/Thunersee> .
 <http://abc/mondial/10/rivers/Aare> :flowsInto 
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/rivers/Reuss> :flowsInto 
     <http://abc/mondial/10/lakes/Vierwaldstattersee> .
 <http://abc/mondial/10/rivers/Reuss> :flowsInto 
     <http://abc/mondial/10/rivers/Aare> .
 <http://abc/mondial/10/rivers/Limmat> :flowsInto 
     <http://abc/mondial/10/rivers/Aare> .
 <http://abc/mondial/10/rivers/Oder> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Weichsel> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Drin> :flowsInto 
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/rivers/WhiteDrin> :flowsInto 
     <http://abc/mondial/10/rivers/Drin> .
 <http://abc/mondial/10/rivers/BlackDrin> :flowsInto 
     <http://abc/mondial/10/rivers/Drin> .
 <http://abc/mondial/10/rivers/Kura> :flowsInto 
     <http://abc/mondial/10/lakes/CaspianSea> .
 <http://abc/mondial/10/rivers/Murat> :flowsInto 
     <http://abc/mondial/10/lakes/LakeKeban> .
 <http://abc/mondial/10/rivers/Karasu> :flowsInto 
     <http://abc/mondial/10/lakes/LakeKeban> .
 <http://abc/mondial/10/rivers/NorthernDwina> :flowsInto 
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/rivers/Suchona> :flowsInto 
     <http://abc/mondial/10/rivers/NorthernDwina> .
 <http://abc/mondial/10/rivers/Petschora> :flowsInto 
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/rivers/Newa> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Swir> :flowsInto 
     <http://abc/mondial/10/lakes/OzeroLadoga> .
 <http://abc/mondial/10/rivers/Narva> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/WesternDwina> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/rivers/Volga> :flowsInto 
     <http://abc/mondial/10/lakes/CaspianSea> .
 <http://abc/mondial/10/rivers/Oka> :flowsInto 
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/rivers/Don> :flowsInto 
     <http://abc/mondial/10/seas/SeaofAzov> .
 <http://abc/mondial/10/rivers/Dnepr> :flowsInto 
     <http://abc/mondial/10/seas/BlackSea> .
 <http://abc/mondial/10/rivers/Ural> :flowsInto 
     <http://abc/mondial/10/lakes/CaspianSea> .
 <http://abc/mondial/10/rivers/Ob> :flowsInto 
     <http://abc/mondial/10/seas/SibirianSea> .
 <http://abc/mondial/10/rivers/Irtysch> :flowsInto 
     <http://abc/mondial/10/rivers/Ob> .
 <http://abc/mondial/10/rivers/Tobol> :flowsInto 
     <http://abc/mondial/10/rivers/Ob> .
 <http://abc/mondial/10/rivers/Ischim> :flowsInto 
     <http://abc/mondial/10/rivers/Irtysch> .
 <http://abc/mondial/10/rivers/Katun> :flowsInto 
     <http://abc/mondial/10/rivers/Ob> .
 <http://abc/mondial/10/rivers/Jenissej> :flowsInto 
     <http://abc/mondial/10/seas/SibirianSea> .
 <http://abc/mondial/10/rivers/Angara> :flowsInto 
     <http://abc/mondial/10/lakes/OzeroBaikal> .
 <http://abc/mondial/10/rivers/Angara> :flowsInto 
     <http://abc/mondial/10/rivers/Jenissej> .
 <http://abc/mondial/10/rivers/Chatanga> :flowsInto 
     <http://abc/mondial/10/seas/SibirianSea> .
 <http://abc/mondial/10/rivers/Lena> :flowsInto 
     <http://abc/mondial/10/seas/SibirianSea> .
 <http://abc/mondial/10/rivers/Amur> :flowsInto 
     <http://abc/mondial/10/seas/SeaofOkhotsk> .
 <http://abc/mondial/10/rivers/Schilka> :flowsInto 
     <http://abc/mondial/10/rivers/Amur> .
 <http://abc/mondial/10/rivers/Argun> :flowsInto 
     <http://abc/mondial/10/rivers/Amur> .
 <http://abc/mondial/10/rivers/Kolyma> :flowsInto 
     <http://abc/mondial/10/seas/SibirianSea> .
 <http://abc/mondial/10/lakes/Inari> :flowsInto 
     <http://abc/mondial/10/rivers/Paatsjoki> .
 <http://abc/mondial/10/lakes/Oulujaervi> :flowsInto 
     <http://abc/mondial/10/rivers/Oulujoki> .
 <http://abc/mondial/10/lakes/Kallavesi> :flowsInto 
     <http://abc/mondial/10/rivers/Vuoksi> .
 <http://abc/mondial/10/lakes/Saimaa> :flowsInto 
     <http://abc/mondial/10/rivers/Vuoksi> .
 <http://abc/mondial/10/lakes/Paeijaenne> :flowsInto 
     <http://abc/mondial/10/rivers/Kymijoki> .
 <http://abc/mondial/10/lakes/Mjoesa-See> :flowsInto 
     <http://abc/mondial/10/rivers/Lagen> .
 <http://abc/mondial/10/lakes/Storuman> :flowsInto 
     <http://abc/mondial/10/rivers/Umeaelv> .
 <http://abc/mondial/10/lakes/Siljan> :flowsInto 
     <http://abc/mondial/10/rivers/Oesterdalaelv> .
 <http://abc/mondial/10/lakes/Maelaren> :flowsInto 
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/lakes/Vaenern> :flowsInto 
     <http://abc/mondial/10/rivers/Goetaaelv> .
 <http://abc/mondial/10/lakes/Bodensee> :flowsInto 
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/lakes/Chiemsee> :flowsInto 
     <http://abc/mondial/10/rivers/Alz> .
 <http://abc/mondial/10/lakes/StarnbergerSee> :flowsInto 
     <http://abc/mondial/10/rivers/Wurm> .
 <http://abc/mondial/10/lakes/Ammersee> :flowsInto 
     <http://abc/mondial/10/rivers/Ammer> .
 <http://abc/mondial/10/lakes/LacLeman> :flowsInto 
     <http://abc/mondial/10/rivers/Rhone> .
 <http://abc/mondial/10/lakes/Zurichsee> :flowsInto 
     <http://abc/mondial/10/rivers/Limmat> .
 <http://abc/mondial/10/lakes/Thunersee> :flowsInto 
     <http://abc/mondial/10/rivers/Aare> .
 <http://abc/mondial/10/lakes/Brienzersee> :flowsInto 
     <http://abc/mondial/10/rivers/Aare> .
 <http://abc/mondial/10/lakes/Vierwaldstattersee> :flowsInto 
     <http://abc/mondial/10/rivers/Reuss> .
 <http://abc/mondial/10/lakes/LagodiGarda> :flowsInto 
     <http://abc/mondial/10/rivers/Mincio> .
 <http://abc/mondial/10/lakes/LagoMaggiore> :flowsInto 
     <http://abc/mondial/10/rivers/Ticino> .
 <http://abc/mondial/10/lakes/LagodiComo> :flowsInto 
     <http://abc/mondial/10/rivers/Adda> .
 <http://abc/mondial/10/lakes/LakeOhrid> :flowsInto 
     <http://abc/mondial/10/rivers/BlackDrin> .
 <http://abc/mondial/10/lakes/LakeKeban> :flowsInto 
     <http://abc/mondial/10/rivers/Euphrat> .
 <http://abc/mondial/10/lakes/OzeroLadoga> :flowsInto 
     <http://abc/mondial/10/rivers/Newa> .
 <http://abc/mondial/10/lakes/OzeroOnega> :flowsInto 
     <http://abc/mondial/10/rivers/Swir> .
 <http://abc/mondial/10/lakes/OzeroPskovskoje> :flowsInto 
     <http://abc/mondial/10/rivers/Narva> .
 <http://abc/mondial/10/lakes/OzeroBaikal> :flowsInto 
     <http://abc/mondial/10/rivers/Angara> .
 <http://abc/mondial/10/rivers/Thjorsa> :hasSource 
     <http://abc/mondial/10/sources/Thjorsa> .
 <http://abc/mondial/10/rivers/JoekulsaaFjoellum> :hasSource 
     <http://abc/mondial/10/sources/JoekulsaaFjoellum> .
 <http://abc/mondial/10/rivers/Glomma> :hasSource 
     <http://abc/mondial/10/sources/Glomma> .
 <http://abc/mondial/10/rivers/Lagen> :hasSource 
     <http://abc/mondial/10/sources/Lagen> .
 <http://abc/mondial/10/rivers/Goetaaelv> :hasSource 
     <http://abc/mondial/10/sources/Goetaaelv> .
 <http://abc/mondial/10/rivers/Klaraelv> :hasSource 
     <http://abc/mondial/10/sources/Klaraelv> .
 <http://abc/mondial/10/rivers/Umeaelv> :hasSource 
     <http://abc/mondial/10/sources/Umeaelv> .
 <http://abc/mondial/10/rivers/Dalaelv> :hasSource 
     <http://abc/mondial/10/sources/Dalaelv> .
 <http://abc/mondial/10/rivers/Vaesterdalaelv> :hasSource 
     <http://abc/mondial/10/sources/Vaesterdalaelv> .
 <http://abc/mondial/10/rivers/Oesterdalaelv> :hasSource 
     <http://abc/mondial/10/sources/Oesterdalaelv> .
 <http://abc/mondial/10/rivers/Paatsjoki> :hasSource 
     <http://abc/mondial/10/sources/Paatsjoki> .
 <http://abc/mondial/10/rivers/Ounasjoki> :hasSource 
     <http://abc/mondial/10/sources/Ounasjoki> .
 <http://abc/mondial/10/rivers/Kemijoki> :hasSource 
     <http://abc/mondial/10/sources/Kemijoki> .
 <http://abc/mondial/10/rivers/Oulujoki> :hasSource 
     <http://abc/mondial/10/sources/Oulujoki> .
 <http://abc/mondial/10/rivers/Kymijoki> :hasSource 
     <http://abc/mondial/10/sources/Kymijoki> .
 <http://abc/mondial/10/rivers/Kokemaeenjoki> :hasSource 
     <http://abc/mondial/10/sources/Kokemaeenjoki> .
 <http://abc/mondial/10/rivers/Vuoksi> :hasSource 
     <http://abc/mondial/10/sources/Vuoksi> .
 <http://abc/mondial/10/rivers/Thames> :hasSource 
     <http://abc/mondial/10/sources/Thames> .
 <http://abc/mondial/10/rivers/Maas> :hasSource 
     <http://abc/mondial/10/sources/Maas> .
 <http://abc/mondial/10/rivers/Loire> :hasSource 
     <http://abc/mondial/10/sources/Loire> .
 <http://abc/mondial/10/rivers/Garonne> :hasSource 
     <http://abc/mondial/10/sources/Garonne> .
 <http://abc/mondial/10/rivers/Rhone> :hasSource 
     <http://abc/mondial/10/sources/Rhone> .
 <http://abc/mondial/10/rivers/Saone> :hasSource 
     <http://abc/mondial/10/sources/Saone> .
 <http://abc/mondial/10/rivers/Doubs> :hasSource 
     <http://abc/mondial/10/sources/Doubs> .
 <http://abc/mondial/10/rivers/Isere> :hasSource 
     <http://abc/mondial/10/sources/Isere> .
 <http://abc/mondial/10/rivers/Seine> :hasSource 
     <http://abc/mondial/10/sources/Seine> .
 <http://abc/mondial/10/rivers/Marne> :hasSource 
     <http://abc/mondial/10/sources/Marne> .
 <http://abc/mondial/10/rivers/Tajo> :hasSource 
     <http://abc/mondial/10/sources/Tajo> .
 <http://abc/mondial/10/rivers/Douro> :hasSource 
     <http://abc/mondial/10/sources/Douro> .
 <http://abc/mondial/10/rivers/Guadiana> :hasSource 
     <http://abc/mondial/10/sources/Guadiana> .
 <http://abc/mondial/10/rivers/Guadalquivir> :hasSource 
     <http://abc/mondial/10/sources/Guadalquivir> .
 <http://abc/mondial/10/rivers/Ebro> :hasSource 
     <http://abc/mondial/10/sources/Ebro> .
 <http://abc/mondial/10/rivers/Po> :hasSource 
     <http://abc/mondial/10/sources/Po> .
 <http://abc/mondial/10/rivers/Ticino> :hasSource 
     <http://abc/mondial/10/sources/Ticino> .
 <http://abc/mondial/10/rivers/Adda> :hasSource 
     <http://abc/mondial/10/sources/Adda> .
 <http://abc/mondial/10/rivers/Mincio> :hasSource 
     <http://abc/mondial/10/sources/Mincio> .
 <http://abc/mondial/10/rivers/Etsch> :hasSource 
     <http://abc/mondial/10/sources/Etsch> .
 <http://abc/mondial/10/rivers/Tiber> :hasSource 
     <http://abc/mondial/10/sources/Tiber> .
 <http://abc/mondial/10/rivers/Arno> :hasSource 
     <http://abc/mondial/10/sources/Arno> .
 <http://abc/mondial/10/rivers/Donau> :hasSource 
     <http://abc/mondial/10/sources/Donau> .
 <http://abc/mondial/10/rivers/Breg> :hasSource 
     <http://abc/mondial/10/sources/Breg> .
 <http://abc/mondial/10/rivers/Brigach> :hasSource 
     <http://abc/mondial/10/sources/Brigach> .
 <http://abc/mondial/10/rivers/Iller> :hasSource 
     <http://abc/mondial/10/sources/Iller> .
 <http://abc/mondial/10/rivers/Lech> :hasSource 
     <http://abc/mondial/10/sources/Lech> .
 <http://abc/mondial/10/rivers/Isar> :hasSource 
     <http://abc/mondial/10/sources/Isar> .
 <http://abc/mondial/10/rivers/Ammer> :hasSource 
     <http://abc/mondial/10/sources/Ammer> .
 <http://abc/mondial/10/rivers/Wurm> :hasSource 
     <http://abc/mondial/10/sources/Wurm> .
 <http://abc/mondial/10/rivers/Inn> :hasSource 
     <http://abc/mondial/10/sources/Inn> .
 <http://abc/mondial/10/rivers/Alz> :hasSource 
     <http://abc/mondial/10/sources/Alz> .
 <http://abc/mondial/10/rivers/Salzach> :hasSource 
     <http://abc/mondial/10/sources/Salzach> .
 <http://abc/mondial/10/rivers/Enns> :hasSource 
     <http://abc/mondial/10/sources/Enns> .
 <http://abc/mondial/10/rivers/March> :hasSource 
     <http://abc/mondial/10/sources/March> .
 <http://abc/mondial/10/rivers/Raab> :hasSource 
     <http://abc/mondial/10/sources/Raab> .
 <http://abc/mondial/10/rivers/Waag> :hasSource 
     <http://abc/mondial/10/sources/Waag> .
 <http://abc/mondial/10/rivers/Drau> :hasSource 
     <http://abc/mondial/10/sources/Drau> .
 <http://abc/mondial/10/rivers/Mur> :hasSource 
     <http://abc/mondial/10/sources/Mur> .
 <http://abc/mondial/10/rivers/Theiss> :hasSource 
     <http://abc/mondial/10/sources/Theiss> .
 <http://abc/mondial/10/rivers/Save> :hasSource 
     <http://abc/mondial/10/sources/Save> .
 <http://abc/mondial/10/rivers/Morava> :hasSource 
     <http://abc/mondial/10/sources/Morava> .
 <http://abc/mondial/10/rivers/WesternMorava> :hasSource 
     <http://abc/mondial/10/sources/WesternMorava> .
 <http://abc/mondial/10/rivers/SouthernMorava> :hasSource 
     <http://abc/mondial/10/sources/SouthernMorava> .
 <http://abc/mondial/10/rivers/Olt> :hasSource 
     <http://abc/mondial/10/sources/Olt> .
 <http://abc/mondial/10/rivers/Pruth> :hasSource 
     <http://abc/mondial/10/sources/Pruth> .
 <http://abc/mondial/10/rivers/Dnjestr> :hasSource 
     <http://abc/mondial/10/sources/Dnjestr> .
 <http://abc/mondial/10/rivers/Weser> :hasSource 
     <http://abc/mondial/10/sources/Weser> .
 <http://abc/mondial/10/rivers/Aller> :hasSource 
     <http://abc/mondial/10/sources/Aller> .
 <http://abc/mondial/10/rivers/Leine> :hasSource 
     <http://abc/mondial/10/sources/Leine> .
 <http://abc/mondial/10/rivers/Werra> :hasSource 
     <http://abc/mondial/10/sources/Werra> .
 <http://abc/mondial/10/rivers/Fulda> :hasSource 
     <http://abc/mondial/10/sources/Fulda> .
 <http://abc/mondial/10/rivers/Elbe> :hasSource 
     <http://abc/mondial/10/sources/Elbe> .
 <http://abc/mondial/10/rivers/Moldau> :hasSource 
     <http://abc/mondial/10/sources/Moldau> .
 <http://abc/mondial/10/rivers/Rhein> :hasSource 
     <http://abc/mondial/10/sources/Rhein> .
 <http://abc/mondial/10/rivers/Main> :hasSource 
     <http://abc/mondial/10/sources/Main> .
 <http://abc/mondial/10/rivers/Mosel> :hasSource 
     <http://abc/mondial/10/sources/Mosel> .
 <http://abc/mondial/10/rivers/Saar> :hasSource 
     <http://abc/mondial/10/sources/Saar> .
 <http://abc/mondial/10/rivers/Neckar> :hasSource 
     <http://abc/mondial/10/sources/Neckar> .
 <http://abc/mondial/10/rivers/Aare> :hasSource 
     <http://abc/mondial/10/sources/Aare> .
 <http://abc/mondial/10/rivers/Reuss> :hasSource 
     <http://abc/mondial/10/sources/Reuss> .
 <http://abc/mondial/10/rivers/Limmat> :hasSource 
     <http://abc/mondial/10/sources/Limmat> .
 <http://abc/mondial/10/rivers/Oder> :hasSource 
     <http://abc/mondial/10/sources/Oder> .
 <http://abc/mondial/10/rivers/Weichsel> :hasSource 
     <http://abc/mondial/10/sources/Weichsel> .
 <http://abc/mondial/10/rivers/Drin> :hasSource 
     <http://abc/mondial/10/sources/Drin> .
 <http://abc/mondial/10/rivers/WhiteDrin> :hasSource 
     <http://abc/mondial/10/sources/WhiteDrin> .
 <http://abc/mondial/10/rivers/BlackDrin> :hasSource 
     <http://abc/mondial/10/sources/BlackDrin> .
 <http://abc/mondial/10/rivers/Kura> :hasSource 
     <http://abc/mondial/10/sources/Kura> .
 <http://abc/mondial/10/rivers/Tigris> :hasSource 
     <http://abc/mondial/10/sources/Tigris> .
 <http://abc/mondial/10/rivers/Euphrat> :hasSource 
     <http://abc/mondial/10/sources/Euphrat> .
 <http://abc/mondial/10/rivers/Murat> :hasSource 
     <http://abc/mondial/10/sources/Murat> .
 <http://abc/mondial/10/rivers/Karasu> :hasSource 
     <http://abc/mondial/10/sources/Karasu> .
 <http://abc/mondial/10/rivers/NorthernDwina> :hasSource 
     <http://abc/mondial/10/sources/NorthernDwina> .
 <http://abc/mondial/10/rivers/Suchona> :hasSource 
     <http://abc/mondial/10/sources/Suchona> .
 <http://abc/mondial/10/rivers/Petschora> :hasSource 
     <http://abc/mondial/10/sources/Petschora> .
 <http://abc/mondial/10/rivers/Newa> :hasSource 
     <http://abc/mondial/10/sources/Newa> .
 <http://abc/mondial/10/rivers/Swir> :hasSource 
     <http://abc/mondial/10/sources/Swir> .
 <http://abc/mondial/10/rivers/Narva> :hasSource 
     <http://abc/mondial/10/sources/Narva> .
 <http://abc/mondial/10/rivers/WesternDwina> :hasSource 
     <http://abc/mondial/10/sources/WesternDwina> .
 <http://abc/mondial/10/rivers/Volga> :hasSource 
     <http://abc/mondial/10/sources/Volga> .
 <http://abc/mondial/10/rivers/Oka> :hasSource 
     <http://abc/mondial/10/sources/Oka> .
 <http://abc/mondial/10/rivers/Don> :hasSource 
     <http://abc/mondial/10/sources/Don> .
 <http://abc/mondial/10/rivers/Dnepr> :hasSource 
     <http://abc/mondial/10/sources/Dnepr> .
 <http://abc/mondial/10/rivers/Ural> :hasSource 
     <http://abc/mondial/10/sources/Ural> .
 <http://abc/mondial/10/rivers/Ob> :hasSource 
     <http://abc/mondial/10/sources/Ob> .
 <http://abc/mondial/10/rivers/Tobol> :hasSource 
     <http://abc/mondial/10/sources/Tobol> .
 <http://abc/mondial/10/rivers/Katun> :hasSource 
     <http://abc/mondial/10/sources/Katun> .
 <http://abc/mondial/10/rivers/Jenissej> :hasSource 
     <http://abc/mondial/10/sources/Jenissej> .
 <http://abc/mondial/10/rivers/Angara> :hasSource 
     <http://abc/mondial/10/sources/Angara> .
 <http://abc/mondial/10/rivers/Chatanga> :hasSource 
     <http://abc/mondial/10/sources/Chatanga> .
 <http://abc/mondial/10/rivers/Lena> :hasSource 
     <http://abc/mondial/10/sources/Lena> .
 <http://abc/mondial/10/rivers/Amur> :hasSource 
     <http://abc/mondial/10/sources/Amur> .
 <http://abc/mondial/10/rivers/Schilka> :hasSource 
     <http://abc/mondial/10/sources/Schilka> .
 <http://abc/mondial/10/rivers/Kolyma> :hasSource 
     <http://abc/mondial/10/sources/Kolyma> .
 <http://abc/mondial/10/rivers/Thjorsa> :hasEstuary
     <http://abc/mondial/10/estuarys/Thjorsa> .
 <http://abc/mondial/10/rivers/JoekulsaaFjoellum> :hasEstuary
     <http://abc/mondial/10/estuarys/JoekulsaaFjoellum> .
 <http://abc/mondial/10/rivers/Glomma> :hasEstuary
     <http://abc/mondial/10/estuarys/Glomma> .
 <http://abc/mondial/10/rivers/Lagen> :hasEstuary
     <http://abc/mondial/10/estuarys/Lagen> .
 <http://abc/mondial/10/rivers/Goetaaelv> :hasEstuary
     <http://abc/mondial/10/estuarys/Goetaaelv> .
 <http://abc/mondial/10/rivers/Klaraelv> :hasEstuary
     <http://abc/mondial/10/estuarys/Klaraelv> .
 <http://abc/mondial/10/rivers/Umeaelv> :hasEstuary
     <http://abc/mondial/10/estuarys/Umeaelv> .
 <http://abc/mondial/10/rivers/Dalaelv> :hasEstuary
     <http://abc/mondial/10/estuarys/Dalaelv> .
 <http://abc/mondial/10/rivers/Vaesterdalaelv> :hasEstuary
     <http://abc/mondial/10/estuarys/Vaesterdalaelv> .
 <http://abc/mondial/10/rivers/Oesterdalaelv> :hasEstuary
     <http://abc/mondial/10/estuarys/Oesterdalaelv> .
 <http://abc/mondial/10/rivers/Paatsjoki> :hasEstuary
     <http://abc/mondial/10/estuarys/Paatsjoki> .
 <http://abc/mondial/10/rivers/Ounasjoki> :hasEstuary
     <http://abc/mondial/10/estuarys/Ounasjoki> .
 <http://abc/mondial/10/rivers/Kemijoki> :hasEstuary
     <http://abc/mondial/10/estuarys/Kemijoki> .
 <http://abc/mondial/10/rivers/Oulujoki> :hasEstuary
     <http://abc/mondial/10/estuarys/Oulujoki> .
 <http://abc/mondial/10/rivers/Kymijoki> :hasEstuary
     <http://abc/mondial/10/estuarys/Kymijoki> .
 <http://abc/mondial/10/rivers/Kokemaeenjoki> :hasEstuary
     <http://abc/mondial/10/estuarys/Kokemaeenjoki> .
 <http://abc/mondial/10/rivers/Vuoksi> :hasEstuary
     <http://abc/mondial/10/estuarys/Vuoksi> .
 <http://abc/mondial/10/rivers/Thames> :hasEstuary
     <http://abc/mondial/10/estuarys/Thames> .
 <http://abc/mondial/10/rivers/Maas> :hasEstuary
     <http://abc/mondial/10/estuarys/Maas> .
 <http://abc/mondial/10/rivers/Loire> :hasEstuary
     <http://abc/mondial/10/estuarys/Loire> .
 <http://abc/mondial/10/rivers/Garonne> :hasEstuary
     <http://abc/mondial/10/estuarys/Garonne> .
 <http://abc/mondial/10/rivers/Rhone> :hasEstuary
     <http://abc/mondial/10/estuarys/Rhone> .
 <http://abc/mondial/10/rivers/Saone> :hasEstuary
     <http://abc/mondial/10/estuarys/Saone> .
 <http://abc/mondial/10/rivers/Doubs> :hasEstuary
     <http://abc/mondial/10/estuarys/Doubs> .
 <http://abc/mondial/10/rivers/Isere> :hasEstuary
     <http://abc/mondial/10/estuarys/Isere> .
 <http://abc/mondial/10/rivers/Seine> :hasEstuary
     <http://abc/mondial/10/estuarys/Seine> .
 <http://abc/mondial/10/rivers/Marne> :hasEstuary
     <http://abc/mondial/10/estuarys/Marne> .
 <http://abc/mondial/10/rivers/Tajo> :hasEstuary
     <http://abc/mondial/10/estuarys/Tajo> .
 <http://abc/mondial/10/rivers/Douro> :hasEstuary
     <http://abc/mondial/10/estuarys/Douro> .
 <http://abc/mondial/10/rivers/Guadiana> :hasEstuary
     <http://abc/mondial/10/estuarys/Guadiana> .
 <http://abc/mondial/10/rivers/Guadalquivir> :hasEstuary
     <http://abc/mondial/10/estuarys/Guadalquivir> .
 <http://abc/mondial/10/rivers/Ebro> :hasEstuary
     <http://abc/mondial/10/estuarys/Ebro> .
 <http://abc/mondial/10/rivers/Po> :hasEstuary
     <http://abc/mondial/10/estuarys/Po> .
 <http://abc/mondial/10/rivers/Ticino> :hasEstuary
     <http://abc/mondial/10/estuarys/Ticino> .
 <http://abc/mondial/10/rivers/Adda> :hasEstuary
     <http://abc/mondial/10/estuarys/Adda> .
 <http://abc/mondial/10/rivers/Mincio> :hasEstuary
     <http://abc/mondial/10/estuarys/Mincio> .
 <http://abc/mondial/10/rivers/Etsch> :hasEstuary
     <http://abc/mondial/10/estuarys/Etsch> .
 <http://abc/mondial/10/rivers/Tiber> :hasEstuary
     <http://abc/mondial/10/estuarys/Tiber> .
 <http://abc/mondial/10/rivers/Arno> :hasEstuary
     <http://abc/mondial/10/estuarys/Arno> .
 <http://abc/mondial/10/rivers/Donau> :hasEstuary
     <http://abc/mondial/10/estuarys/Donau> .
 <http://abc/mondial/10/rivers/Breg> :hasEstuary
     <http://abc/mondial/10/estuarys/Breg> .
 <http://abc/mondial/10/rivers/Brigach> :hasEstuary
     <http://abc/mondial/10/estuarys/Brigach> .
 <http://abc/mondial/10/rivers/Iller> :hasEstuary
     <http://abc/mondial/10/estuarys/Iller> .
 <http://abc/mondial/10/rivers/Lech> :hasEstuary
     <http://abc/mondial/10/estuarys/Lech> .
 <http://abc/mondial/10/rivers/Isar> :hasEstuary
     <http://abc/mondial/10/estuarys/Isar> .
 <http://abc/mondial/10/rivers/Ammer> :hasEstuary
     <http://abc/mondial/10/estuarys/Ammer> .
 <http://abc/mondial/10/rivers/Wurm> :hasEstuary
     <http://abc/mondial/10/estuarys/Wurm> .
 <http://abc/mondial/10/rivers/Inn> :hasEstuary
     <http://abc/mondial/10/estuarys/Inn> .
 <http://abc/mondial/10/rivers/Alz> :hasEstuary
     <http://abc/mondial/10/estuarys/Alz> .
 <http://abc/mondial/10/rivers/Salzach> :hasEstuary
     <http://abc/mondial/10/estuarys/Salzach> .
 <http://abc/mondial/10/rivers/Enns> :hasEstuary
     <http://abc/mondial/10/estuarys/Enns> .
 <http://abc/mondial/10/rivers/March> :hasEstuary
     <http://abc/mondial/10/estuarys/March> .
 <http://abc/mondial/10/rivers/Raab> :hasEstuary
     <http://abc/mondial/10/estuarys/Raab> .
 <http://abc/mondial/10/rivers/Waag> :hasEstuary
     <http://abc/mondial/10/estuarys/Waag> .
 <http://abc/mondial/10/rivers/Drau> :hasEstuary
     <http://abc/mondial/10/estuarys/Drau> .
 <http://abc/mondial/10/rivers/Mur> :hasEstuary
     <http://abc/mondial/10/estuarys/Mur> .
 <http://abc/mondial/10/rivers/Theiss> :hasEstuary
     <http://abc/mondial/10/estuarys/Theiss> .
 <http://abc/mondial/10/rivers/Save> :hasEstuary
     <http://abc/mondial/10/estuarys/Save> .
 <http://abc/mondial/10/rivers/Morava> :hasEstuary
     <http://abc/mondial/10/estuarys/Morava> .
 <http://abc/mondial/10/rivers/WesternMorava> :hasEstuary
     <http://abc/mondial/10/estuarys/WesternMorava> .
 <http://abc/mondial/10/rivers/SouthernMorava> :hasEstuary
     <http://abc/mondial/10/estuarys/SouthernMorava> .
 <http://abc/mondial/10/rivers/Olt> :hasEstuary
     <http://abc/mondial/10/estuarys/Olt> .
 <http://abc/mondial/10/rivers/Pruth> :hasEstuary
     <http://abc/mondial/10/estuarys/Pruth> .
 <http://abc/mondial/10/rivers/Dnjestr> :hasEstuary
     <http://abc/mondial/10/estuarys/Dnjestr> .
 <http://abc/mondial/10/rivers/Weser> :hasEstuary
     <http://abc/mondial/10/estuarys/Weser> .
 <http://abc/mondial/10/rivers/Aller> :hasEstuary
     <http://abc/mondial/10/estuarys/Aller> .
 <http://abc/mondial/10/rivers/Leine> :hasEstuary
     <http://abc/mondial/10/estuarys/Leine> .
 <http://abc/mondial/10/rivers/Werra> :hasEstuary
     <http://abc/mondial/10/estuarys/Werra> .
 <http://abc/mondial/10/rivers/Fulda> :hasEstuary
     <http://abc/mondial/10/estuarys/Fulda> .
 <http://abc/mondial/10/rivers/Elbe> :hasEstuary
     <http://abc/mondial/10/estuarys/Elbe> .
 <http://abc/mondial/10/rivers/Moldau> :hasEstuary
     <http://abc/mondial/10/estuarys/Moldau> .
 <http://abc/mondial/10/rivers/Rhein> :hasEstuary
     <http://abc/mondial/10/estuarys/Rhein> .
 <http://abc/mondial/10/rivers/Main> :hasEstuary
     <http://abc/mondial/10/estuarys/Main> .
 <http://abc/mondial/10/rivers/Mosel> :hasEstuary
     <http://abc/mondial/10/estuarys/Mosel> .
 <http://abc/mondial/10/rivers/Saar> :hasEstuary
     <http://abc/mondial/10/estuarys/Saar> .
 <http://abc/mondial/10/rivers/Neckar> :hasEstuary
     <http://abc/mondial/10/estuarys/Neckar> .
 <http://abc/mondial/10/rivers/Aare> :hasEstuary
     <http://abc/mondial/10/estuarys/Aare> .
 <http://abc/mondial/10/rivers/Reuss> :hasEstuary
     <http://abc/mondial/10/estuarys/Reuss> .
 <http://abc/mondial/10/rivers/Limmat> :hasEstuary
     <http://abc/mondial/10/estuarys/Limmat> .
 <http://abc/mondial/10/rivers/Oder> :hasEstuary
     <http://abc/mondial/10/estuarys/Oder> .
 <http://abc/mondial/10/rivers/Weichsel> :hasEstuary
     <http://abc/mondial/10/estuarys/Weichsel> .
 <http://abc/mondial/10/rivers/Drin> :hasEstuary
     <http://abc/mondial/10/estuarys/Drin> .
 <http://abc/mondial/10/rivers/WhiteDrin> :hasEstuary
     <http://abc/mondial/10/estuarys/WhiteDrin> .
 <http://abc/mondial/10/rivers/BlackDrin> :hasEstuary
     <http://abc/mondial/10/estuarys/BlackDrin> .
 <http://abc/mondial/10/rivers/Murat> :hasEstuary
     <http://abc/mondial/10/estuarys/Murat> .
 <http://abc/mondial/10/rivers/Karasu> :hasEstuary
     <http://abc/mondial/10/estuarys/Karasu> .
 <http://abc/mondial/10/rivers/NorthernDwina> :hasEstuary
     <http://abc/mondial/10/estuarys/NorthernDwina> .
 <http://abc/mondial/10/rivers/Suchona> :hasEstuary
     <http://abc/mondial/10/estuarys/Suchona> .
 <http://abc/mondial/10/rivers/Petschora> :hasEstuary
     <http://abc/mondial/10/estuarys/Petschora> .
 <http://abc/mondial/10/rivers/Newa> :hasEstuary
     <http://abc/mondial/10/estuarys/Newa> .
 <http://abc/mondial/10/rivers/Swir> :hasEstuary
     <http://abc/mondial/10/estuarys/Swir> .
 <http://abc/mondial/10/rivers/Narva> :hasEstuary
     <http://abc/mondial/10/estuarys/Narva> .
 <http://abc/mondial/10/rivers/WesternDwina> :hasEstuary
     <http://abc/mondial/10/estuarys/WesternDwina> .
 <http://abc/mondial/10/rivers/Volga> :hasEstuary
     <http://abc/mondial/10/estuarys/Volga> .
 <http://abc/mondial/10/rivers/Oka> :hasEstuary
     <http://abc/mondial/10/estuarys/Oka> .
 <http://abc/mondial/10/rivers/Don> :hasEstuary
     <http://abc/mondial/10/estuarys/Don> .
 <http://abc/mondial/10/rivers/Dnepr> :hasEstuary
     <http://abc/mondial/10/estuarys/Dnepr> .
 <http://abc/mondial/10/rivers/Ob> :hasEstuary
     <http://abc/mondial/10/estuarys/Ob> .
 <http://abc/mondial/10/rivers/Irtysch> :hasEstuary
     <http://abc/mondial/10/estuarys/Irtysch> .
 <http://abc/mondial/10/rivers/Tobol> :hasEstuary
     <http://abc/mondial/10/estuarys/Tobol> .
 <http://abc/mondial/10/rivers/Ischim> :hasEstuary
     <http://abc/mondial/10/estuarys/Ischim> .
 <http://abc/mondial/10/rivers/Katun> :hasEstuary
     <http://abc/mondial/10/estuarys/Katun> .
 <http://abc/mondial/10/rivers/Jenissej> :hasEstuary
     <http://abc/mondial/10/estuarys/Jenissej> .
 <http://abc/mondial/10/rivers/Angara> :hasEstuary
     <http://abc/mondial/10/estuarys/Angara> .
 <http://abc/mondial/10/rivers/Chatanga> :hasEstuary
     <http://abc/mondial/10/estuarys/Chatanga> .
 <http://abc/mondial/10/rivers/Lena> :hasEstuary
     <http://abc/mondial/10/estuarys/Lena> .
 <http://abc/mondial/10/rivers/Amur> :hasEstuary
     <http://abc/mondial/10/estuarys/Amur> .
 <http://abc/mondial/10/rivers/Schilka> :hasEstuary
     <http://abc/mondial/10/estuarys/Schilka> .
 <http://abc/mondial/10/rivers/Argun> :hasEstuary
     <http://abc/mondial/10/estuarys/Argun> .
 <http://abc/mondial/10/rivers/Kolyma> :hasEstuary
     <http://abc/mondial/10/estuarys/Kolyma> .
 <http://abc/mondial/10/countries/AL/cities/Shkoder>
      :locatedAt
     <http://abc/mondial/10/lakes/LakeSkutari> .
 <http://abc/mondial/10/countries/AL/cities/Durres>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/AL/cities/Vlore>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki/cities/Kavalla>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/Attiki/cities/Athens>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/Attiki/cities/Piraeus>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/DhytikiEllas/cities/Patrai>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi/cities/Korfu>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/KedrikiMakedhonia/cities/Thessaloniki>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/Kriti/cities/Iraklion>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion/cities/Ermoupoli>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/Thessalia/cities/Volos>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion/cities/Mytilini>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/SRB/cities/Belgrade>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/SRB/cities/Belgrade>
      :locatedAt
     <http://abc/mondial/10/rivers/Save> .
 <http://abc/mondial/10/countries/F/provinces/Alsace/cities/Strasbourg>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/F/provinces/Aquitaine/cities/Bordeaux>
      :locatedAt
     <http://abc/mondial/10/rivers/Garonne> .
 <http://abc/mondial/10/countries/F/provinces/Bretagne/cities/Brest>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/F/provinces/Centre/cities/Orleans>
      :locatedAt
     <http://abc/mondial/10/rivers/Loire> .
 <http://abc/mondial/10/countries/F/provinces/Centre/cities/Tours>
      :locatedAt
     <http://abc/mondial/10/rivers/Loire> .
 <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne/cities/ChalonsenChampagne>
      :locatedAt
     <http://abc/mondial/10/rivers/Marne> .
 <http://abc/mondial/10/countries/F/provinces/Corse/cities/Ajaccio>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/F/provinces/FrancheComte/cities/Besancon>
      :locatedAt
     <http://abc/mondial/10/rivers/Doubs> .
 <http://abc/mondial/10/countries/F/provinces/HauteNormandie/cities/Rouen>
      :locatedAt
     <http://abc/mondial/10/rivers/Seine> .
 <http://abc/mondial/10/countries/F/provinces/HauteNormandie/cities/LeHavre>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/F/provinces/HauteNormandie/cities/LeHavre>
      :locatedAt
     <http://abc/mondial/10/rivers/Seine> .
 <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/Paris>
      :locatedAt
     <http://abc/mondial/10/rivers/Seine> .
 <http://abc/mondial/10/countries/F/provinces/IledeFrance/cities/BoulogneBillancourt>
      :locatedAt
     <http://abc/mondial/10/rivers/Seine> .
 <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon/cities/Perpignan>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/F/provinces/Lorraine/cities/Metz>
      :locatedAt
     <http://abc/mondial/10/rivers/Mosel> .
 <http://abc/mondial/10/countries/F/provinces/Lorraine/cities/Nancy>
      :locatedAt
     <http://abc/mondial/10/rivers/Mosel> .
 <http://abc/mondial/10/countries/F/provinces/MidiPyrenees/cities/Toulouse>
      :locatedAt
     <http://abc/mondial/10/rivers/Garonne> .
 <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire/cities/Nantes>
      :locatedAt
     <http://abc/mondial/10/rivers/Loire> .
 <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur/cities/Marseille>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur/cities/Nice>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur/cities/Toulon>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Lyon>
      :locatedAt
     <http://abc/mondial/10/rivers/Saone> .
 <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Lyon>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhone> .
 <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Grenoble>
      :locatedAt
     <http://abc/mondial/10/rivers/Isere> .
 <http://abc/mondial/10/countries/F/provinces/RhoneAlpes/cities/Villeurbanne>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhone> .
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Sevilla>
      :locatedAt
     <http://abc/mondial/10/rivers/Guadalquivir> .
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Almeria>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Cadiz>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Cordoba>
      :locatedAt
     <http://abc/mondial/10/rivers/Guadalquivir> .
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Huelva>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Malaga>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/Andalusia/cities/Algeciras>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/Aragon/cities/Zaragoza>
      :locatedAt
     <http://abc/mondial/10/rivers/Ebro> .
 <http://abc/mondial/10/countries/E/provinces/Asturias/cities/Gijon>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/BalearicIslands/cities/PalmadeMallorca>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/BasqueCountry/cities/Bilbao>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/BasqueCountry/cities/Baracaldo>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/BasqueCountry/cities/Donostia>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/SantaCruzdeTenerife>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/LasPalmasdeGranCanaria>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/LaLaguna>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/Cantabria/cities/Santander>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/CastileandLeon/cities/Valladolid>
      :locatedAt
     <http://abc/mondial/10/rivers/Douro> .
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Barcelona>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/Catalonia/cities/Badalona>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/Estremadura/cities/Badajoz>
      :locatedAt
     <http://abc/mondial/10/rivers/Guadiana> .
 <http://abc/mondial/10/countries/E/provinces/Galicia/cities/LaCoruna>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/Galicia/cities/Vigo>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/E/provinces/Murcia/cities/Cartagena>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/Rioja/cities/Logrono>
      :locatedAt
     <http://abc/mondial/10/rivers/Ebro> .
 <http://abc/mondial/10/countries/E/provinces/Valencia/cities/Valencia>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/Valencia/cities/Alicante>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/E/provinces/Valencia/cities/CastellondelaPlana>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/A/provinces/Vorarlberg/cities/Bregenz>
      :locatedAt
     <http://abc/mondial/10/lakes/Bodensee> .
 <http://abc/mondial/10/countries/A/provinces/Vienna/cities/Vienna>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/A/provinces/UpperAustria/cities/Linz>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/A/provinces/Tyrol/cities/Innsbruck>
      :locatedAt
     <http://abc/mondial/10/rivers/Inn> .
 <http://abc/mondial/10/countries/A/provinces/Styria/cities/Graz>
      :locatedAt
     <http://abc/mondial/10/rivers/Mur> .
 <http://abc/mondial/10/countries/A/provinces/Salzburg/cities/Salzburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Salzach> .
 <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky/cities/Ostrava>
      :locatedAt
     <http://abc/mondial/10/rivers/Oder> .
 <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky/cities/Olomouc>
      :locatedAt
     <http://abc/mondial/10/rivers/March> .
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Stuttgart>
      :locatedAt
     <http://abc/mondial/10/rivers/Neckar> .
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Mannheim>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Mannheim>
      :locatedAt
     <http://abc/mondial/10/rivers/Neckar> .
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Karlsruhe>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Heidelberg>
      :locatedAt
     <http://abc/mondial/10/rivers/Neckar> .
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Heilbronn>
      :locatedAt
     <http://abc/mondial/10/rivers/Neckar> .
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Ulm>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg/cities/Ulm>
      :locatedAt
     <http://abc/mondial/10/rivers/Iller> .
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Munich>
      :locatedAt
     <http://abc/mondial/10/rivers/Isar> .
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Augsburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Lech> .
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Wurzburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Main> .
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Regensburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/D/provinces/Bayern/cities/Ingolstadt>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/D/provinces/Bremen/cities/Bremen>
      :locatedAt
     <http://abc/mondial/10/rivers/Weser> .
 <http://abc/mondial/10/countries/D/provinces/Bremen/cities/Bremerhaven>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/D/provinces/Bremen/cities/Bremerhaven>
      :locatedAt
     <http://abc/mondial/10/rivers/Weser> .
 <http://abc/mondial/10/countries/D/provinces/Hamburg/cities/Hamburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Elbe> .
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/Wiesbaden>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/Wiesbaden>
      :locatedAt
     <http://abc/mondial/10/rivers/Main> .
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/FrankfurtamMain>
      :locatedAt
     <http://abc/mondial/10/rivers/Main> .
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/Kassel>
      :locatedAt
     <http://abc/mondial/10/rivers/Fulda> .
 <http://abc/mondial/10/countries/D/provinces/Hessen/cities/OffenbachamMain>
      :locatedAt
     <http://abc/mondial/10/rivers/Main> .
 <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern/cities/Rostock>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Hannover>
      :locatedAt
     <http://abc/mondial/10/rivers/Leine> .
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Gottingen>
      :locatedAt
     <http://abc/mondial/10/rivers/Leine> .
 <http://abc/mondial/10/countries/D/provinces/Niedersachsen/cities/Wolfsburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Aller> .
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Dusseldorf>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Koln>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Duisburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Bonn>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Krefeld>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Leverkusen>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen/cities/Neuss>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Mainz>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Ludwigshafen>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Koblenz>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz/cities/Koblenz>
      :locatedAt
     <http://abc/mondial/10/rivers/Mosel> .
 <http://abc/mondial/10/countries/D/provinces/Saarland/cities/Saarbrucken>
      :locatedAt
     <http://abc/mondial/10/rivers/Saar> .
 <http://abc/mondial/10/countries/D/provinces/Sachsen/cities/Dresden>
      :locatedAt
     <http://abc/mondial/10/rivers/Elbe> .
 <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt/cities/Magdeburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Elbe> .
 <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein/cities/Kiel>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein/cities/Lubeck>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/H/provinces/Szolnok/cities/Szolnok>
      :locatedAt
     <http://abc/mondial/10/rivers/Theiss> .
 <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-/cities/Budapest>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/H/provinces/Gyor-munic.-/cities/Gyor>
      :locatedAt
     <http://abc/mondial/10/rivers/Raab> .
 <http://abc/mondial/10/countries/H/provinces/Szeged-munic.-/cities/Szeged>
      :locatedAt
     <http://abc/mondial/10/rivers/Theiss> .
 <http://abc/mondial/10/countries/I/provinces/Piemonte/cities/Turin>
      :locatedAt
     <http://abc/mondial/10/rivers/Po> .
 <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige/cities/Bolzano>
      :locatedAt
     <http://abc/mondial/10/rivers/Etsch> .
 <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige/cities/Trento>
      :locatedAt
     <http://abc/mondial/10/rivers/Etsch> .
 <http://abc/mondial/10/countries/I/provinces/Veneto/cities/Verona>
      :locatedAt
     <http://abc/mondial/10/rivers/Etsch> .
 <http://abc/mondial/10/countries/I/provinces/Veneto/cities/Venice>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/FriuliVeneziaGiulia/cities/Trieste>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Liguria/cities/LaSpezia>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Liguria/cities/Genua>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Piacenza>
      :locatedAt
     <http://abc/mondial/10/rivers/Po> .
 <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna/cities/Rimini>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Toscana/cities/Livorno>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Toscana/cities/Pisa>
      :locatedAt
     <http://abc/mondial/10/rivers/Arno> .
 <http://abc/mondial/10/countries/I/provinces/Toscana/cities/Firenze>
      :locatedAt
     <http://abc/mondial/10/rivers/Arno> .
 <http://abc/mondial/10/countries/I/provinces/Marche/cities/Ancona>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Lazio/cities/Rome>
      :locatedAt
     <http://abc/mondial/10/rivers/Tiber> .
 <http://abc/mondial/10/countries/I/provinces/Abruzzo/cities/Pescara>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Campania/cities/Salerno>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Campania/cities/Napoli>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Campania/cities/TorredelGreco>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Puglia/cities/Bari>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Puglia/cities/Taranto>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Calabria/cities/ReggiodiCalabria>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Palermo>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Messina>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Catania>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Siracusa>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/I/provinces/Sardegna/cities/Cagliari>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/SK/cities/Bratislava>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/SK/cities/Bratislava>
      :locatedAt
     <http://abc/mondial/10/rivers/March> .
 <http://abc/mondial/10/countries/SLO/cities/Ljubljana>
      :locatedAt
     <http://abc/mondial/10/rivers/Save> .
 <http://abc/mondial/10/countries/CH/provinces/AG/cities/Aarau>
      :locatedAt
     <http://abc/mondial/10/rivers/Aare> .
 <http://abc/mondial/10/countries/CH/provinces/BS/cities/Basel>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/CH/provinces/BE/cities/Bern>
      :locatedAt
     <http://abc/mondial/10/rivers/Aare> .
 <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhone> .
 <http://abc/mondial/10/countries/CH/provinces/GE/cities/Geneva>
      :locatedAt
     <http://abc/mondial/10/lakes/LacLeman> .
 <http://abc/mondial/10/countries/CH/provinces/GR/cities/Chur>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/CH/provinces/LU/cities/Luzern>
      :locatedAt
     <http://abc/mondial/10/rivers/Reuss> .
 <http://abc/mondial/10/countries/CH/provinces/LU/cities/Luzern>
      :locatedAt
     <http://abc/mondial/10/lakes/Vierwaldstattersee> .
 <http://abc/mondial/10/countries/CH/provinces/SH/cities/Schaffhausen>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/CH/provinces/SO/cities/Solothurn>
      :locatedAt
     <http://abc/mondial/10/rivers/Aare> .
 <http://abc/mondial/10/countries/CH/provinces/TI/cities/Bellinzona>
      :locatedAt
     <http://abc/mondial/10/rivers/Ticino> .
 <http://abc/mondial/10/countries/CH/provinces/UR/cities/Altdorf>
      :locatedAt
     <http://abc/mondial/10/rivers/Reuss> .
 <http://abc/mondial/10/countries/CH/provinces/VS/cities/Sion>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhone> .
 <http://abc/mondial/10/countries/CH/provinces/VD/cities/Lausanne>
      :locatedAt
     <http://abc/mondial/10/lakes/LacLeman> .
 <http://abc/mondial/10/countries/CH/provinces/ZH/cities/Zurich>
      :locatedAt
     <http://abc/mondial/10/rivers/Limmat> .
 <http://abc/mondial/10/countries/CH/provinces/ZH/cities/Zurich>
      :locatedAt
     <http://abc/mondial/10/lakes/Zurichsee> .
 <http://abc/mondial/10/countries/LV/cities/Riga>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/LV/cities/Riga>
      :locatedAt
     <http://abc/mondial/10/rivers/WesternDwina> .
 <http://abc/mondial/10/countries/PL/provinces/Warszwaskie/cities/Warsaw>
      :locatedAt
     <http://abc/mondial/10/rivers/Weichsel> .
 <http://abc/mondial/10/countries/PL/provinces/Bydgoskie/cities/Bydgoszcz>
      :locatedAt
     <http://abc/mondial/10/rivers/Weichsel> .
 <http://abc/mondial/10/countries/PL/provinces/Gdanskie/cities/Gdansk>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/PL/provinces/Gdanskie/cities/Gdansk>
      :locatedAt
     <http://abc/mondial/10/rivers/Weichsel> .
 <http://abc/mondial/10/countries/PL/provinces/Gdanskie/cities/Gdynia>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/PL/provinces/Krakowskie/cities/Krakow>
      :locatedAt
     <http://abc/mondial/10/rivers/Weichsel> .
 <http://abc/mondial/10/countries/PL/provinces/Opolskie/cities/Opole>
      :locatedAt
     <http://abc/mondial/10/rivers/Oder> .
 <http://abc/mondial/10/countries/PL/provinces/Szczecinskie/cities/Szczecin>
      :locatedAt
     <http://abc/mondial/10/rivers/Oder> .
 <http://abc/mondial/10/countries/PL/provinces/Wroclawskie/cities/Wroclaw>
      :locatedAt
     <http://abc/mondial/10/rivers/Oder> .
 <http://abc/mondial/10/countries/UA/provinces/Cherkaska/cities/Cherkasy>
      :locatedAt
     <http://abc/mondial/10/rivers/Dnepr> .
 <http://abc/mondial/10/countries/UA/provinces/Chernivetska/cities/Chernivtsi>
      :locatedAt
     <http://abc/mondial/10/rivers/Pruth> .
 <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska/cities/Dnipropetrovsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Dnepr> .
 <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska/cities/Dniprodzerzhynsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Dnepr> .
 <http://abc/mondial/10/countries/UA/provinces/Khersonska/cities/Kherson>
      :locatedAt
     <http://abc/mondial/10/rivers/Dnepr> .
 <http://abc/mondial/10/countries/UA/provinces/Kyyivska/cities/Kiev>
      :locatedAt
     <http://abc/mondial/10/rivers/Dnepr> .
 <http://abc/mondial/10/countries/UA/provinces/Poltavska/cities/Kremenchuk>
      :locatedAt
     <http://abc/mondial/10/rivers/Dnepr> .
 <http://abc/mondial/10/countries/UA/provinces/Zaporizka/cities/Zaporizhzhya>
      :locatedAt
     <http://abc/mondial/10/rivers/Dnepr> .
 <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast/cities/Arkhangelsk>
      :locatedAt
     <http://abc/mondial/10/rivers/NorthernDwina> .
 <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast/cities/Arkhangelsk>
      :locatedAt
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast/cities/Severodvinsk>
      :locatedAt
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/countries/R/provinces/Murmanskayaoblast/cities/Murmansk>
      :locatedAt
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/countries/R/provinces/Kaliningradskayaoblast/cities/Kaliningrad>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/R/provinces/SanktPeterburg/cities/SanktPeterburg>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast/cities/Kaluga>
      :locatedAt
     <http://abc/mondial/10/rivers/Oka> .
 <http://abc/mondial/10/countries/R/provinces/Kostromskayaoblast/cities/Kostroma>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Kolomna>
      :locatedAt
     <http://abc/mondial/10/rivers/Oka> .
 <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast/cities/Serpukhov>
      :locatedAt
     <http://abc/mondial/10/rivers/Oka> .
 <http://abc/mondial/10/countries/R/provinces/Ryazanskayaoblast/cities/Ryazan>
      :locatedAt
     <http://abc/mondial/10/rivers/Oka> .
 <http://abc/mondial/10/countries/R/provinces/Smolenskayaoblast/cities/Smolensk>
      :locatedAt
     <http://abc/mondial/10/rivers/Dnepr> .
 <http://abc/mondial/10/countries/R/provinces/Tverskayaoblast/cities/Tver>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast/cities/Yaroslavl>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast/cities/Rybinsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast/cities/NizhniyNovgorod>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast/cities/NizhniyNovgorod>
      :locatedAt
     <http://abc/mondial/10/rivers/Oka> .
 <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast/cities/Dzerzhinsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Oka> .
 <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan/cities/Kazan>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast/cities/Astrakhan>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast/cities/Volgograd>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast/cities/Samara>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast/cities/Tolyatti>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast/cities/Saratov>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast/cities/Balakovo>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast/cities/Engels>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast/cities/Simbirsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Volga> .
 <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast/cities/Orenburg>
      :locatedAt
     <http://abc/mondial/10/rivers/Ural> .
 <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast/cities/Orsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Ural> .
 <http://abc/mondial/10/countries/R/provinces/Kurganskayaoblast/cities/Kurgan>
      :locatedAt
     <http://abc/mondial/10/rivers/Tobol> .
 <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast/cities/Magnitogorsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Ural> .
 <http://abc/mondial/10/countries/R/provinces/Altayskiykray/cities/Biysk>
      :locatedAt
     <http://abc/mondial/10/rivers/Katun> .
 <http://abc/mondial/10/countries/R/provinces/Omskayaoblast/cities/Omsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Irtysch> .
 <http://abc/mondial/10/countries/R/provinces/Rep.ofTyva/cities/Kyzyl>
      :locatedAt
     <http://abc/mondial/10/rivers/Jenissej> .
 <http://abc/mondial/10/countries/R/provinces/Rep.ofKhakassiya/cities/Abakan>
      :locatedAt
     <http://abc/mondial/10/rivers/Jenissej> .
 <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray/cities/Krasnoyarsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Jenissej> .
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/Irkutsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Angara> .
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/Angarsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Angara> .
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/Bratsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Angara> .
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/UstIlimsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Angara> .
 <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast/cities/UsolyeSibirskoye>
      :locatedAt
     <http://abc/mondial/10/rivers/Angara> .
 <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast/cities/Chita>
      :locatedAt
     <http://abc/mondial/10/rivers/Schilka> .
 <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha/cities/Yakutsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Lena> .
 <http://abc/mondial/10/countries/R/provinces/Primorskykray/cities/Vladivostok>
      :locatedAt
     <http://abc/mondial/10/seas/SeaofJapan> .
 <http://abc/mondial/10/countries/R/provinces/Primorskykray/cities/Nakhodka>
      :locatedAt
     <http://abc/mondial/10/seas/SeaofJapan> .
 <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray/cities/Khabarovsk>
      :locatedAt
     <http://abc/mondial/10/rivers/Amur> .
 <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray/cities/KomsomolsknaAmure>
      :locatedAt
     <http://abc/mondial/10/rivers/Amur> .
 <http://abc/mondial/10/countries/R/provinces/Amurskayaoblast/cities/Blagoveshchensk>
      :locatedAt
     <http://abc/mondial/10/rivers/Amur> .
 <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast/cities/PetropavlovskKamchatsky>
      :locatedAt
     <http://abc/mondial/10/seas/PacificOcean> .
 <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast/cities/Magadan>
      :locatedAt
     <http://abc/mondial/10/seas/SeaofOkhotsk> .
 <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast/cities/Okhotsk>
      :locatedAt
     <http://abc/mondial/10/seas/SeaofOkhotsk> .
 <http://abc/mondial/10/countries/B/provinces/Liege/cities/Liege>
      :locatedAt
     <http://abc/mondial/10/rivers/Maas> .
 <http://abc/mondial/10/countries/B/provinces/Namur/cities/Namur>
      :locatedAt
     <http://abc/mondial/10/rivers/Maas> .
 <http://abc/mondial/10/countries/NL/provinces/Gelderland/cities/Arnhem>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/NL/provinces/Gelderland/cities/Nijmegen>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/NL/provinces/ZuidHolland/cities/Rotterdam>
      :locatedAt
     <http://abc/mondial/10/rivers/Rhein> .
 <http://abc/mondial/10/countries/NL/provinces/Limburg/cities/Maastricht>
      :locatedAt
     <http://abc/mondial/10/rivers/Maas> .
 <http://abc/mondial/10/countries/HR/cities/Zagreb>
      :locatedAt
     <http://abc/mondial/10/rivers/Save> .
 <http://abc/mondial/10/countries/RO/provinces/Braila/cities/Braila>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/RO/provinces/Covasna/cities/SfintuGheorghe>
      :locatedAt
     <http://abc/mondial/10/rivers/Olt> .
 <http://abc/mondial/10/countries/RO/provinces/Galati/cities/Galati>
      :locatedAt
     <http://abc/mondial/10/rivers/Donau> .
 <http://abc/mondial/10/countries/RO/provinces/Harghita/cities/MiercureaCiuc>
      :locatedAt
     <http://abc/mondial/10/rivers/Olt> .
 <http://abc/mondial/10/countries/RO/provinces/Olt/cities/Slatina>
      :locatedAt
     <http://abc/mondial/10/rivers/Olt> .
 <http://abc/mondial/10/countries/TR/provinces/Diyarbakir/cities/Diyarbakir>
      :locatedAt
     <http://abc/mondial/10/rivers/Tigris> .
 <http://abc/mondial/10/countries/TR/provinces/Erzincan/cities/Erzincan>
      :locatedAt
     <http://abc/mondial/10/rivers/Karasu> .
 <http://abc/mondial/10/countries/TR/provinces/Erzurum/cities/Erzurum>
      :locatedAt
     <http://abc/mondial/10/rivers/Karasu> .
 <http://abc/mondial/10/countries/TR/provinces/Mus/cities/Mus>
      :locatedAt
     <http://abc/mondial/10/rivers/Murat> .
 <http://abc/mondial/10/countries/DK/cities/Copenhagen>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/DK/cities/Aarhus>
      :locatedAt
     <http://abc/mondial/10/seas/Kattegat> .
 <http://abc/mondial/10/countries/DK/cities/Esbjerg>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/EW/cities/Tallinn>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/FARX/cities/Torshavn>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/SF/provinces/Haeme/cities/Lahti>
      :locatedAt
     <http://abc/mondial/10/lakes/Paeijaenne> .
 <http://abc/mondial/10/countries/SF/provinces/Kuopio/cities/Kuopio>
      :locatedAt
     <http://abc/mondial/10/lakes/Kallavesi> .
 <http://abc/mondial/10/countries/SF/provinces/Kymi/cities/Lappeenrenta>
      :locatedAt
     <http://abc/mondial/10/lakes/Saimaa> .
 <http://abc/mondial/10/countries/SF/provinces/Kymi/cities/Kotka>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/SF/provinces/Kymi/cities/Kotka>
      :locatedAt
     <http://abc/mondial/10/rivers/Kymijoki> .
 <http://abc/mondial/10/countries/SF/provinces/Lappia/cities/Rovaniemi>
      :locatedAt
     <http://abc/mondial/10/rivers/Ounasjoki> .
 <http://abc/mondial/10/countries/SF/provinces/Lappia/cities/Rovaniemi>
      :locatedAt
     <http://abc/mondial/10/rivers/Kemijoki> .
 <http://abc/mondial/10/countries/SF/provinces/Mikkeli/cities/Mikkeli>
      :locatedAt
     <http://abc/mondial/10/lakes/Saimaa> .
 <http://abc/mondial/10/countries/SF/provinces/Suomi/cities/Jyvaeskylae>
      :locatedAt
     <http://abc/mondial/10/lakes/Paeijaenne> .
 <http://abc/mondial/10/countries/SF/provinces/Oulu/cities/Oulu>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/SF/provinces/Oulu/cities/Oulu>
      :locatedAt
     <http://abc/mondial/10/rivers/Oulujoki> .
 <http://abc/mondial/10/countries/SF/provinces/Turku-Pori/cities/Pori>
      :locatedAt
     <http://abc/mondial/10/rivers/Kokemaeenjoki> .
 <http://abc/mondial/10/countries/SF/provinces/Turku-Pori/cities/Turku>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/SF/provinces/Uusimaa/cities/Helsinki>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/SF/provinces/Uusimaa/cities/Espoo>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/SF/provinces/Vaasa/cities/Vaasa>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/N/provinces/Oslo/cities/Oslo>
      :locatedAt
     <http://abc/mondial/10/seas/Skagerrak> .
 <http://abc/mondial/10/countries/N/provinces/Oestfold/cities/Moss>
      :locatedAt
     <http://abc/mondial/10/seas/Skagerrak> .
 <http://abc/mondial/10/countries/N/provinces/Hedmark/cities/Hamar>
      :locatedAt
     <http://abc/mondial/10/lakes/Mjoesa-See> .
 <http://abc/mondial/10/countries/N/provinces/Oppland/cities/Lillehammer>
      :locatedAt
     <http://abc/mondial/10/lakes/Mjoesa-See> .
 <http://abc/mondial/10/countries/N/provinces/AustAgder/cities/Arendal>
      :locatedAt
     <http://abc/mondial/10/seas/Skagerrak> .
 <http://abc/mondial/10/countries/N/provinces/VestAgder/cities/Kristiansand>
      :locatedAt
     <http://abc/mondial/10/seas/Skagerrak> .
 <http://abc/mondial/10/countries/N/provinces/Rogaland/cities/Stavanger>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/N/provinces/Hordaland/cities/Bergen>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/N/provinces/MoereogRomsdal/cities/Molde>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/N/provinces/SoerTrondelag/cities/Trondheim>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/N/provinces/NordTrondelag/cities/Steinkjer>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/N/provinces/Nordland/cities/Svolvaer>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/N/provinces/Nordland/cities/Narvik>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/N/provinces/Nordland/cities/Bodoe>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/N/provinces/Troms/cities/Tromsoe>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/N/provinces/Finnmark/cities/Hammerfest>
      :locatedAt
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/countries/N/provinces/Finnmark/cities/Vadsoe>
      :locatedAt
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/countries/S/provinces/Alvsborg/cities/Vanersborg>
      :locatedAt
     <http://abc/mondial/10/rivers/Goetaaelv> .
 <http://abc/mondial/10/countries/S/provinces/Alvsborg/cities/Vanersborg>
      :locatedAt
     <http://abc/mondial/10/lakes/Vaenern> .
 <http://abc/mondial/10/countries/S/provinces/Blekinge/cities/Karlskrona>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/Gavleborg/cities/Gavle>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus/cities/Goteborg>
      :locatedAt
     <http://abc/mondial/10/seas/Kattegat> .
 <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus/cities/Goteborg>
      :locatedAt
     <http://abc/mondial/10/rivers/Goetaaelv> .
 <http://abc/mondial/10/countries/S/provinces/Gotland/cities/Visby>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/Halland/cities/Halmstad>
      :locatedAt
     <http://abc/mondial/10/seas/Kattegat> .
 <http://abc/mondial/10/countries/S/provinces/Jonkoping/cities/Jonkoping>
      :locatedAt
     <http://abc/mondial/10/lakes/Vaettern> .
 <http://abc/mondial/10/countries/S/provinces/Kalmar/cities/Kalmar>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/Malmohus/cities/Malmo>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/Malmohus/cities/Helsingborg>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/Norrbotten/cities/Lulea>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/Skaraborg/cities/Mariestad>
      :locatedAt
     <http://abc/mondial/10/lakes/Vaenern> .
 <http://abc/mondial/10/countries/S/provinces/Stockholm/cities/Stockholm>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/Stockholm/cities/Stockholm>
      :locatedAt
     <http://abc/mondial/10/lakes/Maelaren> .
 <http://abc/mondial/10/countries/S/provinces/Varmland/cities/Karlstad>
      :locatedAt
     <http://abc/mondial/10/rivers/Klaraelv> .
 <http://abc/mondial/10/countries/S/provinces/Varmland/cities/Karlstad>
      :locatedAt
     <http://abc/mondial/10/lakes/Vaenern> .
 <http://abc/mondial/10/countries/S/provinces/Vasterbotten/cities/Umea>
      :locatedAt
     <http://abc/mondial/10/rivers/Umeaelv> .
 <http://abc/mondial/10/countries/S/provinces/Vasternorrland/cities/Harnosand>
      :locatedAt
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/countries/S/provinces/Vastmanland/cities/Vasteras>
      :locatedAt
     <http://abc/mondial/10/lakes/Maelaren> .
 <http://abc/mondial/10/countries/MC/cities/Monaco>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GBG/cities/SaintPeterPort>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/IS/cities/Reykjavik>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/IS/cities/Keflavik>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/IS/cities/Hafnarfjoerdur>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/IS/cities/Akureyri>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/IRL/cities/Dublin>
      :locatedAt
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/countries/GBJ/cities/SaintHelier>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/M/cities/Valletta>
      :locatedAt
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/countries/GBM/cities/Douglas>
      :locatedAt
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/countries/P/provinces/Algarve/cities/Faro>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/P/provinces/Lisbon/cities/Lisbon>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/P/provinces/Lisbon/cities/Lisbon>
      :locatedAt
     <http://abc/mondial/10/rivers/Tajo> .
 <http://abc/mondial/10/countries/P/provinces/Porto/cities/Porto>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/P/provinces/Porto/cities/Porto>
      :locatedAt
     <http://abc/mondial/10/rivers/Douro> .
 <http://abc/mondial/10/countries/P/provinces/Porto/cities/VilaNovadeGaia>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/P/provinces/Porto/cities/VilaNovadeGaia>
      :locatedAt
     <http://abc/mondial/10/rivers/Douro> .
 <http://abc/mondial/10/countries/P/provinces/Santarem/cities/Santarem>
      :locatedAt
     <http://abc/mondial/10/rivers/Tajo> .
 <http://abc/mondial/10/countries/P/provinces/Setubal/cities/Setubal>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/P/provinces/VianadoCastelo/cities/VianadoCastelo>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/P/provinces/Azores/cities/PontaDelgada>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/P/provinces/Madeira/cities/Funchal>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/SVAX/cities/Longyearbyen>
      :locatedAt
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Reading>
      :locatedAt
     <http://abc/mondial/10/rivers/Thames> .
 <http://abc/mondial/10/countries/GB/provinces/Devon/cities/Plymouth>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Bournemouth>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Poole>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/EastSussex/cities/Brighton>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/SouthendonSea>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/SouthendonSea>
      :locatedAt
     <http://abc/mondial/10/rivers/Thames> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London>
      :locatedAt
     <http://abc/mondial/10/rivers/Thames> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Southampton>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Portsmouth>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Havant>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Fareham>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Dover>
      :locatedAt
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/countries/GB/provinces/Oxfordshire/cities/Oxford>
      :locatedAt
     <http://abc/mondial/10/rivers/Thames> .
 <http://abc/mondial/10/countries/GB/provinces/Highland/cities/Inverness>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/GB/provinces/Tayside/cities/Dundee>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/GB/provinces/AberconwyandColwyn/cities/ColwynBay>
      :locatedAt
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/countries/GB/provinces/Cardiff/cities/Cardiff>
      :locatedAt
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/countries/GB/provinces/NorthernIreland/cities/Belfast>
      :locatedAt
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/countries/GB/provinces/Orkneys/cities/Kirkwall>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/GB/provinces/OuterHebrides/cities/Stornoway>
      :locatedAt
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/countries/GB/provinces/Shetland/cities/Lerwick>
      :locatedAt
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/countries/GR/provinces/Kriti/cities/Iraklion>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Kreta> .
 <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion/cities/Mytilini>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Lesbos> .
 <http://abc/mondial/10/countries/F/provinces/Corse/cities/Ajaccio>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Corse> .
 <http://abc/mondial/10/countries/E/provinces/BalearicIslands/cities/PalmadeMallorca>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Mallorca> .
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/SantaCruzdeTenerife>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Teneriffa> .
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/LasPalmasdeGranCanaria>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GranCanaria> .
 <http://abc/mondial/10/countries/E/provinces/CanaryIslands/cities/LaLaguna>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Teneriffa> .
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Palermo>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Sicilia> .
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Messina>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Sicilia> .
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Catania>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Sicilia> .
 <http://abc/mondial/10/countries/I/provinces/Sicilia/cities/Siracusa>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Sicilia> .
 <http://abc/mondial/10/countries/I/provinces/Sardegna/cities/Cagliari>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Sardegna> .
 <http://abc/mondial/10/countries/I/provinces/Sardegna/cities/Sassari>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Sardegna> .
 <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast/cities/YuzhnoSakhalinsk>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Sachalin> .
 <http://abc/mondial/10/countries/DK/cities/Copenhagen>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Seeland> .
 <http://abc/mondial/10/countries/DK/cities/Odense>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Fuenen> .
 <http://abc/mondial/10/countries/FARX/cities/Torshavn>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Streymoy> .
 <http://abc/mondial/10/countries/GBG/cities/SaintPeterPort>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Guernsey> .
 <http://abc/mondial/10/countries/IS/cities/Reykjavik>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Iceland> .
 <http://abc/mondial/10/countries/IS/cities/Keflavik>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Iceland> .
 <http://abc/mondial/10/countries/IS/cities/Hafnarfjoerdur>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Iceland> .
 <http://abc/mondial/10/countries/IS/cities/Akureyri>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Iceland> .
 <http://abc/mondial/10/countries/IRL/cities/Dublin>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Ireland> .
 <http://abc/mondial/10/countries/GBJ/cities/SaintHelier>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Jersey> .
 <http://abc/mondial/10/countries/M/cities/Valletta>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Malta> .
 <http://abc/mondial/10/countries/M/cities/Victoria>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Gozo> .
 <http://abc/mondial/10/countries/GBM/cities/Douglas>
      :locatedOnIsland
     <http://abc/mondial/10/islands/IsleofMan> .
 <http://abc/mondial/10/countries/P/provinces/Azores/cities/PontaDelgada>
      :locatedOnIsland
     <http://abc/mondial/10/islands/SaoMiguel> .
 <http://abc/mondial/10/countries/P/provinces/Madeira/cities/Funchal>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Madeira> .
 <http://abc/mondial/10/countries/SVAX/cities/Longyearbyen>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Svalbard> .
 <http://abc/mondial/10/countries/GB/provinces/Avon/cities/Bristol>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Bedfordshire/cities/Bedford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Bedfordshire/cities/Luton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Reading>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Wokingham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Newbury>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Windsor>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Slough>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Berkshire/cities/Bracknell>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire/cities/Aylesbury>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire/cities/MiltonKeynes>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire/cities/Wycombe>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire/cities/Cambridge>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire/cities/Peterborough>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire/cities/Huntingdon>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Chester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Warrington>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Macclesfield>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cheshire/cities/Crewe>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cleveland/cities/Middlesbrough>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cleveland/cities/StocktononTees>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cornwall/cities/Truro>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cumbria/cities/Carlisle>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/Derby>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/SuttoninAshfield>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/Chesterfield>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Derbyshire/cities/Matlock>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Devon/cities/Plymouth>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Devon/cities/Exeter>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Bournemouth>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Poole>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Dorset/cities/Dorchester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Durham/cities/Darlington>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Durham/cities/Durham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/EastSussex/cities/Brighton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/EastSussex/cities/Lewes>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Chelmsford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/SouthendonSea>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Basildon>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Colchester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/Braintree>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Essex/cities/EppingForest>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Gloucestershire/cities/Cheltenham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Gloucestershire/cities/Stroud>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Gloucestershire/cities/Gloucester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterLondon/cities/London>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Manchester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Wigan>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Stockport>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Bolton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Salford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Tameside>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Oldham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Trafford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Rochdale>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/GreaterManchester/cities/Bury>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Winchester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Southampton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Portsmouth>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Basingstoke>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Havant>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Eastleigh>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hampshire/cities/Fareham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/HerefordandWorcester/cities/Worcester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hertfordshire/cities/SaintAlbans>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Hertfordshire/cities/Hertford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Humberside/cities/KingstonuponHull>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Humberside/cities/Beverley>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Humberside/cities/Hull>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Maidstone>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/RochesteruponMedway>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Canterbury>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Swale>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Sevenoaks>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Dover>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/Tonbridge>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Kent/cities/TunbridgeWells>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Preston>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Blackpool>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Blackburn>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Lancashire/cities/Lancaster>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Leicestershire/cities/Leichester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Lincolnshire/cities/Lincoln>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Liverpool>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Wiral>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Sefton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/SaintHelens>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Merseyside/cities/Knowsley>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Norfolk/cities/Norwich>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Norfolk/cities/KingsLynn>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Northamptonshire/cities/Northampton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/Harrogate>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/Scarborough>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/York>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire/cities/Northallerton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire/cities/Nottingham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire/cities/NewarkonTrent>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire/cities/Mansfield>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Oxfordshire/cities/Oxford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Shropshire/cities/Shrewsbury>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Somerset/cities/Taunton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Barnsley>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Sheffield>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Doncaster>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire/cities/Rotherham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Staffordshire/cities/Stafford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Staffordshire/cities/StokeonTrent>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Staffordshire/cities/NewcastleunderLyme>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Suffolk/cities/Ipswich>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Guildford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Reigate>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Elmbridge>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Surrey/cities/Kingston>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/TyneandWear/cities/Sunderland>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/TyneandWear/cities/NewcastleuponTyne>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/TyneandWear/cities/Gateshead>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Warwickshire/cities/Warwick>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Warwickshire/cities/Nuneaton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Warwickshire/cities/StratfordonAvon>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Birmingham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Dudley>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Coventry>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Walsall>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Wolverhampton>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Solihull>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/WestBromwich>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestMidlands/cities/Sandwell>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestSussex/cities/Chichester>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestSussex/cities/Horsham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Wakefield>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Leeds>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Bradford>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Kirklees>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/WestYorkshire/cities/Huddersfield>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Wiltshire/cities/Salisbury>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Wiltshire/cities/Trowbridge>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Borders/cities/NewtownSt.Boswells>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Central/cities/Stirling>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/DumfriesandGalloway/cities/Dumfries>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Fife/cities/Glenrothes>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Grampian/cities/Aberdeen>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Highland/cities/Inverness>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Lothian/cities/Edinburgh>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Strathclyde/cities/Glasgow>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Strathclyde/cities/Renfrew>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Tayside/cities/Dundee>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/AberconwyandColwyn/cities/ColwynBay>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Anglesey/cities/Llangefni>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Anglesey> .
 <http://abc/mondial/10/countries/GB/provinces/BlaenauGwent/cities/EbbwVale>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Bridgend/cities/Bridgend>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Caerphilly/cities/YstradFawr>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Cardiff/cities/Cardiff>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Carmarthenshire/cities/Carmarthen>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Ceredigion/cities/Aberystwyth>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Denbighshire/cities/Ruthin>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Flintshire/cities/Mold>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Gwynedd/cities/Caernarfon>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/MerthyrTydfil/cities/MerthyrTydfil>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Monmouthshire/cities/Cwmbran>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/NeathandPortTalbot/cities/PortTalbot>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Newport/cities/Newport>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Pembrokeshire/cities/Haverfordwest>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Powys/cities/LlandrindodWells>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/RhonddaCynonTaff/cities/Rhondda>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Swansea/cities/Swansea>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Torfaen/cities/Pontypool>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan/cities/RhymneyValley>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan/cities/Barry>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/Wrexham/cities/Wrexham>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/countries/GB/provinces/NorthernIreland/cities/Belfast>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Ireland> .
 <http://abc/mondial/10/countries/GB/provinces/Orkneys/cities/Kirkwall>
      :locatedOnIsland
     <http://abc/mondial/10/islands/OrkneyMainland> .
 <http://abc/mondial/10/countries/GB/provinces/OuterHebrides/cities/Stornoway>
      :locatedOnIsland
     <http://abc/mondial/10/islands/LewisandHarris> .
 <http://abc/mondial/10/countries/GB/provinces/Shetland/cities/Lerwick>
      :locatedOnIsland
     <http://abc/mondial/10/islands/ShetlandMainland> .
 <http://abc/mondial/10/countries/CY/cities/Nicosia>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Cyprus> .
 <http://abc/mondial/10/mountains/Oeraefajoekull>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Iceland> .
 <http://abc/mondial/10/mountains/Snoefell>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Iceland> .
 <http://abc/mondial/10/mountains/BenNevis>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GreatBritain> .
 <http://abc/mondial/10/mountains/MonteCinto>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Corse> .
 <http://abc/mondial/10/mountains/Etna>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Sicilia> .
 <http://abc/mondial/10/mountains/Psiloritis>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Kreta> .
 <http://abc/mondial/10/mountains/Olympos>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Cyprus> .
 <http://abc/mondial/10/mountains/PicodeTeide>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Teneriffa> .
 <http://abc/mondial/10/mountains/PicodelosNieves>
      :locatedOnIsland
     <http://abc/mondial/10/islands/GranCanaria> .
 <http://abc/mondial/10/mountains/RoquedelosMuchachos>
      :locatedOnIsland
     <http://abc/mondial/10/islands/LaPalma> .
 <http://abc/mondial/10/mountains/PicoRuivo>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Madeira> .
 <http://abc/mondial/10/mountains/Pico>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Pico> .
 <http://abc/mondial/10/mountains/Zhima>
      :locatedOnIsland
     <http://abc/mondial/10/islands/Olkhon> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/seas/Kattegat>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/seas/Kattegat>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/B> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GBG> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GBJ> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/BG> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/seas/SeaofAzov>
      :locatedIn
     <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/seas/SeaofAzov>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/LV> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/LT> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/EW> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/FARX> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/GBZ> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/IS> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/IRL> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/SVAX> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/MNE> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/SLO> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/BIH> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/MC> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GBZ> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/M> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/CY> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/FARX> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/IS> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/SVAX> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/seas/BarentsSea>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/BarentsSea>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/seas/SibirianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/ArcticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/ArcticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/SVAX> .
 <http://abc/mondial/10/seas/BeringSea>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/PacificOcean>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/SeaofOkhotsk>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/SeaofJapan>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/IRL> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/GBM> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/rivers/Thjorsa>
      :locatedIn
     <http://abc/mondial/10/countries/IS> .
 <http://abc/mondial/10/rivers/JoekulsaaFjoellum>
      :locatedIn
     <http://abc/mondial/10/countries/IS> .
 <http://abc/mondial/10/rivers/Glomma>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/rivers/Lagen>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/rivers/Goetaaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/rivers/Klaraelv>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/rivers/Klaraelv>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/rivers/Umeaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/rivers/Dalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/rivers/Vaesterdalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/rivers/Oesterdalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/rivers/Paatsjoki>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Paatsjoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/rivers/Paatsjoki>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/rivers/Ounasjoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/rivers/Kemijoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/rivers/Oulujoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/rivers/Kymijoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/rivers/Kokemaeenjoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/rivers/Vuoksi>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Vuoksi>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/B> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/rivers/Loire>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Garonne>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Garonne>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/rivers/Rhone>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Rhone>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/rivers/Saone>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Doubs>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Doubs>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/rivers/Isere>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Seine>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Marne>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Tajo>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/rivers/Tajo>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/rivers/Guadalquivir>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/rivers/Ebro>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/rivers/Po>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/rivers/Ticino>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/rivers/Ticino>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/rivers/Adda>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/rivers/Mincio>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/rivers/Etsch>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/rivers/Tiber>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/rivers/Arno>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/BG> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/MD> .
 <http://abc/mondial/10/rivers/Breg>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Brigach>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Iller>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Iller>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Lech>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Lech>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Isar>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Isar>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Ammer>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Wurm>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Inn>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Inn>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Inn>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/rivers/Alz>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Salzach>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Salzach>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Enns>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/March>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/March>
      :locatedIn
     <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/rivers/March>
      :locatedIn
     <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/rivers/Raab>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Raab>
      :locatedIn
     <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/rivers/Waag>
      :locatedIn
     <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/SLO> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/rivers/Mur>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Mur>
      :locatedIn
     <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/rivers/Mur>
      :locatedIn
     <http://abc/mondial/10/countries/SLO> .
 <http://abc/mondial/10/rivers/Mur>
      :locatedIn
     <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/rivers/Save>
      :locatedIn
     <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/rivers/Save>
      :locatedIn
     <http://abc/mondial/10/countries/SLO> .
 <http://abc/mondial/10/rivers/Save>
      :locatedIn
     <http://abc/mondial/10/countries/BIH> .
 <http://abc/mondial/10/rivers/Save>
      :locatedIn
     <http://abc/mondial/10/countries/HR> .
 <http://abc/mondial/10/rivers/Morava>
      :locatedIn
     <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/rivers/WesternMorava>
      :locatedIn
     <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/rivers/SouthernMorava>
      :locatedIn
     <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/rivers/SouthernMorava>
      :locatedIn
     <http://abc/mondial/10/countries/SRB> .
 <http://abc/mondial/10/rivers/SouthernMorava>
      :locatedIn
     <http://abc/mondial/10/countries/KOS> .
 <http://abc/mondial/10/rivers/Olt>
      :locatedIn
     <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/MD> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/MD> .
 <http://abc/mondial/10/rivers/Weser>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Aller>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Leine>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Werra>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Fulda>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Moldau>
      :locatedIn
     <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/FL> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/rivers/Main>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Mosel>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Mosel>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Mosel>
      :locatedIn
     <http://abc/mondial/10/countries/L> .
 <http://abc/mondial/10/rivers/Saar>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/rivers/Saar>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Neckar>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Aare>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/rivers/Reuss>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/rivers/Limmat>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/rivers/Drin>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/rivers/WhiteDrin>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/rivers/WhiteDrin>
      :locatedIn
     <http://abc/mondial/10/countries/KOS> .
 <http://abc/mondial/10/rivers/BlackDrin>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/rivers/BlackDrin>
      :locatedIn
     <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/rivers/Kura>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/rivers/Tigris>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/rivers/Euphrat>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/rivers/Murat>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/rivers/Karasu>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/rivers/NorthernDwina>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Suchona>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Petschora>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Newa>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Swir>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Narva>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Narva>
      :locatedIn
     <http://abc/mondial/10/countries/EW> .
 <http://abc/mondial/10/rivers/WesternDwina>
      :locatedIn
     <http://abc/mondial/10/countries/BY> .
 <http://abc/mondial/10/rivers/WesternDwina>
      :locatedIn
     <http://abc/mondial/10/countries/LV> .
 <http://abc/mondial/10/rivers/WesternDwina>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Oka>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Don>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/BY> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Ural>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Ob>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Irtysch>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Tobol>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Ischim>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Katun>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Jenissej>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Angara>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Chatanga>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Lena>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Amur>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Schilka>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Argun>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/rivers/Kolyma>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/lakes/Inari>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/lakes/Oulujaervi>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/lakes/Kallavesi>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/lakes/Saimaa>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/lakes/Paeijaenne>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/lakes/Mjoesa-See>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/lakes/Storuman>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/lakes/Siljan>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/lakes/Maelaren>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/lakes/Vaenern>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/lakes/Vaettern>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/lakes/Arresoe>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/lakes/LochNess>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/lakes/LochLomond>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/lakes/Bodensee>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/lakes/Bodensee>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/lakes/Bodensee>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/lakes/Chiemsee>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/lakes/StarnbergerSee>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/lakes/Ammersee>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/lakes/LaacherMaar>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/lakes/LacLeman>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/lakes/LacLeman>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/lakes/Zurichsee>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/lakes/Thunersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/lakes/Brienzersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/lakes/Vierwaldstattersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/lakes/LagodiGarda>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/lakes/LagoMaggiore>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/lakes/LagoMaggiore>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/lakes/LagodiComo>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/lakes/LagoTrasimeno>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/lakes/LagodiBolsena>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/lakes/LagodiBracciano>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/lakes/Neusiedlersee>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/lakes/Neusiedlersee>
      :locatedIn
     <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/lakes/Balaton>
      :locatedIn
     <http://abc/mondial/10/countries/H> .
 <http://abc/mondial/10/lakes/LakeSkutari>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/lakes/LakeSkutari>
      :locatedIn
     <http://abc/mondial/10/countries/MNE> .
 <http://abc/mondial/10/lakes/LakePrespa>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/lakes/LakePrespa>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/lakes/LakePrespa>
      :locatedIn
     <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/lakes/LakeOhrid>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/lakes/LakeOhrid>
      :locatedIn
     <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/lakes/LakeVan>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/lakes/LakeKeban>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/lakes/CaspianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/lakes/OzeroLadoga>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/lakes/OzeroOnega>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/lakes/OzeroPskovskoje>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/lakes/OzeroPskovskoje>
      :locatedIn
     <http://abc/mondial/10/countries/EW> .
 <http://abc/mondial/10/lakes/OzeroBaikal>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/lakes/OzeroTaimyr>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/lakes/OzeroChanka>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/lakes/OzeroTschany>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/islands/Svalbard>
      :locatedIn
     <http://abc/mondial/10/countries/SVAX> .
 <http://abc/mondial/10/islands/Iceland>
      :locatedIn
     <http://abc/mondial/10/countries/IS> .
 <http://abc/mondial/10/islands/Aust-Vagoey>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/islands/Streymoy>
      :locatedIn
     <http://abc/mondial/10/countries/FARX> .
 <http://abc/mondial/10/islands/Ireland>
      :locatedIn
     <http://abc/mondial/10/countries/IRL> .
 <http://abc/mondial/10/islands/Ireland>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/ShetlandMainland>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/OrkneyMainland>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/SouthRonaldsay>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Hoy>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Westray>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Barra>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/SouthUist>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Benbecula>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/NorthUist>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/LewisandHarris>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Skye>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Rhum>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Mull>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Islay>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Jura>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Arran>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/IsleofMan>
      :locatedIn
     <http://abc/mondial/10/countries/GBM> .
 <http://abc/mondial/10/islands/Anglesey>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/IsleofWight>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Lundy>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/BishopRock>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/islands/Guernsey>
      :locatedIn
     <http://abc/mondial/10/countries/GBG> .
 <http://abc/mondial/10/islands/Jersey>
      :locatedIn
     <http://abc/mondial/10/countries/GBJ> .
 <http://abc/mondial/10/islands/Gotland>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/islands/Oeland>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/islands/Aland>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/islands/Dagoe>
      :locatedIn
     <http://abc/mondial/10/countries/EW> .
 <http://abc/mondial/10/islands/Oesel>
      :locatedIn
     <http://abc/mondial/10/countries/EW> .
 <http://abc/mondial/10/islands/Seeland>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/islands/Fuenen>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/islands/Langeland>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/islands/Falster>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/islands/Lolland>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/islands/Bornholm>
      :locatedIn
     <http://abc/mondial/10/countries/DK> .
 <http://abc/mondial/10/islands/Helgoland>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Fehmarn>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Rugen>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Usedom>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Usedom>
      :locatedIn
     <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/islands/Sylt>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Fohr>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Amrum>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Pellworm>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Wangerooge>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Spiekeroog>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Langeoog>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Baltrum>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Norderney>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Juist>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Borkum>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/islands/Schiermonnikoog>
      :locatedIn
     <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/islands/Ameland>
      :locatedIn
     <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/islands/Terschelling>
      :locatedIn
     <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/islands/Vlieland>
      :locatedIn
     <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/islands/Texel>
      :locatedIn
     <http://abc/mondial/10/countries/NL> .
 <http://abc/mondial/10/islands/Korfu>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Lefkas>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Kefallinia>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Zakinthos>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Kreta>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Chios>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Samos>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Ikaria>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Lesbos>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Kos>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Rhodos>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/islands/Cyprus>
      :locatedIn
     <http://abc/mondial/10/countries/CY> .
 <http://abc/mondial/10/islands/Alicudi>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Filicudi>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Salina>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Lipari>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Vulcano>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Panarea>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Stromboli>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Lampedusa>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Linosa>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Sicilia>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Malta>
      :locatedIn
     <http://abc/mondial/10/countries/M> .
 <http://abc/mondial/10/islands/Gozo>
      :locatedIn
     <http://abc/mondial/10/countries/M> .
 <http://abc/mondial/10/islands/Sardegna>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/islands/Corse>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/islands/Menorca>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Mallorca>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Ibiza>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Formentera>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Lanzarote>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Fuerteventura>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/GranCanaria>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Teneriffa>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Gomera>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Hierro>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/LaPalma>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/islands/Madeira>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/PortoSanto>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/SaoMiguel>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/SantaMaria>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/Terceira>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/SaoJorge>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/Pico>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/Faial>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/Graciosa>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/Flores>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/Corvo>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/islands/KotelnyIsland>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/islands/Paramuschir>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/islands/Olkhon>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/islands/Sachalin>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/mountains/Oeraefajoekull>
      :locatedIn
     <http://abc/mondial/10/countries/IS> .
 <http://abc/mondial/10/mountains/Snoefell>
      :locatedIn
     <http://abc/mondial/10/countries/IS> .
 <http://abc/mondial/10/mountains/Haltiatunturi>
      :locatedIn
     <http://abc/mondial/10/countries/SF> .
 <http://abc/mondial/10/mountains/Kebnekaise>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/mountains/Sarektjokko>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/mountains/Portefjaellen>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/mountains/Tarrekaise>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/mountains/Sulitjelma>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/mountains/Sulitjelma>
      :locatedIn
     <http://abc/mondial/10/countries/S> .
 <http://abc/mondial/10/mountains/Galdhoeppig>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/mountains/Jostedalsbre>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/mountains/Glittertind>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/mountains/Joekul>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/mountains/Snoehetta>
      :locatedIn
     <http://abc/mondial/10/countries/N> .
 <http://abc/mondial/10/mountains/BenNevis>
      :locatedIn
     <http://abc/mondial/10/countries/GB> .
 <http://abc/mondial/10/mountains/Feldberg>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/mountains/Brocken>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/mountains/GrosserArber>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/mountains/Zugspitze>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/mountains/Zugspitze>
      :locatedIn
     <http://abc/mondial/10/countries/D> .
 <http://abc/mondial/10/mountains/MontBlanc>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/mountains/MontBlanc>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/BarredesEcrins>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/mountains/GrandCombin>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/mountains/Matterhorn>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/Matterhorn>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/mountains/MonteRosa>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/MonteRosa>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/mountains/Finsteraarhorn>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/mountains/GranParadiso>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/PizBernina>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/PizBernina>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/mountains/Crap_Sogn_Gion>
      :locatedIn
     <http://abc/mondial/10/countries/CH> .
 <http://abc/mondial/10/mountains/Marmolata>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/Grossglockner>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/mountains/Hochgolling>
      :locatedIn
     <http://abc/mondial/10/countries/A> .
 <http://abc/mondial/10/mountains/GrandBallon>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/mountains/PuyDeDome>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/mountains/PuydeSancy>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/mountains/Vignemale>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/mountains/Vignemale>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/PicodeAneto>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/TorredeCerredo>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/PicodeAlmanzor>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/Moncayo>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/Mulhacen>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/TorredeEstrela>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/mountains/MonteCinto>
      :locatedIn
     <http://abc/mondial/10/countries/F> .
 <http://abc/mondial/10/mountains/GranSasso>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/MonteFalterona>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/Vesuv>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/Etna>
      :locatedIn
     <http://abc/mondial/10/countries/I> .
 <http://abc/mondial/10/mountains/Schneekoppe>
      :locatedIn
     <http://abc/mondial/10/countries/CZ> .
 <http://abc/mondial/10/mountains/Schneekoppe>
      :locatedIn
     <http://abc/mondial/10/countries/PL> .
 <http://abc/mondial/10/mountains/GerlachovskyStit>
      :locatedIn
     <http://abc/mondial/10/countries/SK> .
 <http://abc/mondial/10/mountains/Moldoveanu>
      :locatedIn
     <http://abc/mondial/10/countries/RO> .
 <http://abc/mondial/10/mountains/Musala>
      :locatedIn
     <http://abc/mondial/10/countries/BG> .
 <http://abc/mondial/10/mountains/Jezerce>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/mountains/Korab>
      :locatedIn
     <http://abc/mondial/10/countries/AL> .
 <http://abc/mondial/10/mountains/Korab>
      :locatedIn
     <http://abc/mondial/10/countries/MK> .
 <http://abc/mondial/10/mountains/Olymp>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/mountains/Psiloritis>
      :locatedIn
     <http://abc/mondial/10/countries/GR> .
 <http://abc/mondial/10/mountains/Olympos>
      :locatedIn
     <http://abc/mondial/10/countries/CY> .
 <http://abc/mondial/10/mountains/PicodeTeide>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/PicodelosNieves>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/RoquedelosMuchachos>
      :locatedIn
     <http://abc/mondial/10/countries/E> .
 <http://abc/mondial/10/mountains/PicoRuivo>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/mountains/Pico>
      :locatedIn
     <http://abc/mondial/10/countries/P> .
 <http://abc/mondial/10/mountains/Narodnaja>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/mountains/Demirkazik>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/mountains/Ararat>
      :locatedIn
     <http://abc/mondial/10/countries/TR> .
 <http://abc/mondial/10/mountains/Elbrus>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/mountains/Kasbek>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/mountains/Zhima>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/mountains/Bjelucha>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/mountains/KljutschewskajaSopka>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/deserts/Ryn>
      :locatedIn
     <http://abc/mondial/10/countries/R> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Oslo> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Akershus> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Oestfold> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Buskerud> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Vestfold> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/AustAgder> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/VestAgder> .
 <http://abc/mondial/10/seas/Skagerrak>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus> .
 <http://abc/mondial/10/seas/Kattegat>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus> .
 <http://abc/mondial/10/seas/Kattegat>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Halland> .
 <http://abc/mondial/10/seas/Kattegat>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Kristianstad> .
 <http://abc/mondial/10/seas/Kattegat>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Malmohus> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/NordPasdeCalais> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bremen> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/B/provinces/WestFlanders> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Groningen> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Friesland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Flevoland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/NoordHolland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/ZuidHolland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Zeeland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Telemark> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/VestAgder> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Rogaland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Hordaland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/SognogFjordane> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Essex> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/GreaterLondon> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Humberside> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Kent> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Norfolk> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Northumberland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Suffolk> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/TyneandWear> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Grampian> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Highland> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Orkneys> .
 <http://abc/mondial/10/seas/NorthSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Shetland> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/BasseNormandie> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/HauteNormandie> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/NordPasdeCalais> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Picardie> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cornwall> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Devon> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Dorset> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/EastSussex> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Hampshire> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Kent> .
 <http://abc/mondial/10/seas/TheChannel>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/WestSussex> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Khersonska> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Mykolayivska> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Odeska> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Krym> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Constanta> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Tulcea> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Artvin> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Bolu> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Giresun> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Istanbul> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Kastamonu> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Kirklareli> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Kocaeli> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Ordu> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Rize> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Sakarya> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Samsun> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Sinop> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Trabzon> .
 <http://abc/mondial/10/seas/BlackSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Zonguldak> .
 <http://abc/mondial/10/seas/SeaofAzov>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Donetska> .
 <http://abc/mondial/10/seas/SeaofAzov>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Khersonska> .
 <http://abc/mondial/10/seas/SeaofAzov>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Zaporizka> .
 <http://abc/mondial/10/seas/SeaofAzov>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Krym> .
 <http://abc/mondial/10/seas/SeaofAzov>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> .
 <http://abc/mondial/10/seas/SeaofAzov>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Krasnodarskykray> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Elblaskie> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Gdanskie> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Koszalinskie> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Slupskie> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Szczecinskie> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kaliningradskayaoblast> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/SanktPeterburg> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Aland> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Kymi> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Lappia> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Oulu> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Turku-Pori> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Uusimaa> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Vaasa> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Blekinge> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Gavleborg> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Gotland> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Kalmar> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Kristianstad> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Malmohus> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Norrbotten> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Ostergotland> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Sodermanland> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Stockholm> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Uppsala> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Vasterbotten> .
 <http://abc/mondial/10/seas/BalticSea>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Vasternorrland> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Aquitaine> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Bretagne> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/PoitouCharentes> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Andalusia> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Asturias> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/BasqueCountry> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Cantabria> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Galicia> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Aveiro> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Beja> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Braga> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Coimbra> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Algarve> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Leiria> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Lisbon> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Porto> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Setubal> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/VianadoCastelo> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Madeira> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cornwall> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Devon> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/NorthernIreland> .
 <http://abc/mondial/10/seas/AtlanticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/OuterHebrides> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/AnatolikiMakedhoniakaiThraki> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/Attiki> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/DhytikiEllas> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/Ipiros> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/KedrikiMakedhonia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/Kriti> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/Peloponnisos> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/StereaEllas> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/Thessalia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Corse> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Andalusia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/BalearicIslands> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Catalonia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Murcia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Valencia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Veneto> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/FriuliVeneziaGiulia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Liguria> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Toscana> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Marche> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lazio> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Abruzzo> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Campania> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Puglia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Calabria> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Sicilia> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Sardegna> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Adana> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Antalya> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Aydin> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Balikesir> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Canakkale> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Hatay> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Icel> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Izmir> .
 <http://abc/mondial/10/seas/MediterraneanSea>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Mugla> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/SognogFjordane> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/MoereogRomsdal> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/SoerTrondelag> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/NordTrondelag> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Nordland> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Troms> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Finnmark> .
 <http://abc/mondial/10/seas/NorwegianSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Shetland> .
 <http://abc/mondial/10/seas/BarentsSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia> .
 <http://abc/mondial/10/seas/BarentsSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast> .
 <http://abc/mondial/10/seas/BarentsSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Murmanskayaoblast> .
 <http://abc/mondial/10/seas/BarentsSea>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Finnmark> .
 <http://abc/mondial/10/seas/SibirianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast> .
 <http://abc/mondial/10/seas/SibirianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> .
 <http://abc/mondial/10/seas/SibirianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> .
 <http://abc/mondial/10/seas/SibirianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha> .
 <http://abc/mondial/10/seas/SibirianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> .
 <http://abc/mondial/10/seas/ArcticOcean>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> .
 <http://abc/mondial/10/seas/BeringSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast> .
 <http://abc/mondial/10/seas/BeringSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> .
 <http://abc/mondial/10/seas/PacificOcean>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray> .
 <http://abc/mondial/10/seas/PacificOcean>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast> .
 <http://abc/mondial/10/seas/PacificOcean>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> .
 <http://abc/mondial/10/seas/PacificOcean>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast> .
 <http://abc/mondial/10/seas/SeaofOkhotsk>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast> .
 <http://abc/mondial/10/seas/SeaofOkhotsk>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> .
 <http://abc/mondial/10/seas/SeaofJapan>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Primorskykray> .
 <http://abc/mondial/10/seas/SeaofJapan>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray> .
 <http://abc/mondial/10/seas/SeaofJapan>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Lancashire> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Merseyside> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Anglesey> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cardiff> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Swansea> .
 <http://abc/mondial/10/seas/IrishSea>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/NorthernIreland> .
 <http://abc/mondial/10/rivers/Glomma>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Akershus> .
 <http://abc/mondial/10/rivers/Glomma>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Oestfold> .
 <http://abc/mondial/10/rivers/Glomma>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Hedmark> .
 <http://abc/mondial/10/rivers/Glomma>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/SoerTrondelag> .
 <http://abc/mondial/10/rivers/Lagen>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Akershus> .
 <http://abc/mondial/10/rivers/Lagen>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Hedmark> .
 <http://abc/mondial/10/rivers/Lagen>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Oppland> .
 <http://abc/mondial/10/rivers/Goetaaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Alvsborg> .
 <http://abc/mondial/10/rivers/Goetaaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/GoteborgochBohus> .
 <http://abc/mondial/10/rivers/Klaraelv>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Hedmark> .
 <http://abc/mondial/10/rivers/Klaraelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Varmland> .
 <http://abc/mondial/10/rivers/Umeaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Vasterbotten> .
 <http://abc/mondial/10/rivers/Dalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Gavleborg> .
 <http://abc/mondial/10/rivers/Dalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Dalarna> .
 <http://abc/mondial/10/rivers/Dalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Uppsala> .
 <http://abc/mondial/10/rivers/Dalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Vastmanland> .
 <http://abc/mondial/10/rivers/Vaesterdalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Dalarna> .
 <http://abc/mondial/10/rivers/Oesterdalaelv>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Dalarna> .
 <http://abc/mondial/10/rivers/Paatsjoki>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Murmanskayaoblast> .
 <http://abc/mondial/10/rivers/Paatsjoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Lappia> .
 <http://abc/mondial/10/rivers/Paatsjoki>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Finnmark> .
 <http://abc/mondial/10/rivers/Ounasjoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Lappia> .
 <http://abc/mondial/10/rivers/Kemijoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Lappia> .
 <http://abc/mondial/10/rivers/Oulujoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Oulu> .
 <http://abc/mondial/10/rivers/Kymijoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Haeme> .
 <http://abc/mondial/10/rivers/Kymijoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Kymi> .
 <http://abc/mondial/10/rivers/Kymijoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Mikkeli> .
 <http://abc/mondial/10/rivers/Kokemaeenjoki>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Turku-Pori> .
 <http://abc/mondial/10/rivers/Vuoksi>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia> .
 <http://abc/mondial/10/rivers/Vuoksi>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Kuopio> .
 <http://abc/mondial/10/rivers/Vuoksi>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Kymi> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Berkshire> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Essex> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Gloucestershire> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/GreaterLondon> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Kent> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Oxfordshire> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Surrey> .
 <http://abc/mondial/10/rivers/Thames>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Wiltshire> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Lorraine> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/B/provinces/Liege> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/B/provinces/Limburg> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/B/provinces/Namur> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Gelderland> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/ZuidHolland> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/NoordBrabant> .
 <http://abc/mondial/10/rivers/Maas>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Limburg> .
 <http://abc/mondial/10/rivers/Loire>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Auvergne> .
 <http://abc/mondial/10/rivers/Loire>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Bourgogne> .
 <http://abc/mondial/10/rivers/Loire>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Centre> .
 <http://abc/mondial/10/rivers/Loire>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/PaysdelaLoire> .
 <http://abc/mondial/10/rivers/Loire>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> .
 <http://abc/mondial/10/rivers/Garonne>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Aquitaine> .
 <http://abc/mondial/10/rivers/Garonne>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon> .
 <http://abc/mondial/10/rivers/Garonne>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/MidiPyrenees> .
 <http://abc/mondial/10/rivers/Garonne>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Catalonia> .
 <http://abc/mondial/10/rivers/Rhone>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/LanguedocRoussillon> .
 <http://abc/mondial/10/rivers/Rhone>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/ProvenceCotedAzur> .
 <http://abc/mondial/10/rivers/Rhone>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> .
 <http://abc/mondial/10/rivers/Rhone>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/GE> .
 <http://abc/mondial/10/rivers/Rhone>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/VS> .
 <http://abc/mondial/10/rivers/Rhone>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/VD> .
 <http://abc/mondial/10/rivers/Saone>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Bourgogne> .
 <http://abc/mondial/10/rivers/Saone>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/FrancheComte> .
 <http://abc/mondial/10/rivers/Saone>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Lorraine> .
 <http://abc/mondial/10/rivers/Saone>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> .
 <http://abc/mondial/10/rivers/Doubs>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Bourgogne> .
 <http://abc/mondial/10/rivers/Doubs>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/FrancheComte> .
 <http://abc/mondial/10/rivers/Doubs>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/JU> .
 <http://abc/mondial/10/rivers/Isere>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> .
 <http://abc/mondial/10/rivers/Seine>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Bourgogne> .
 <http://abc/mondial/10/rivers/Seine>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne> .
 <http://abc/mondial/10/rivers/Seine>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/HauteNormandie> .
 <http://abc/mondial/10/rivers/Seine>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/IledeFrance> .
 <http://abc/mondial/10/rivers/Marne>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/ChampagneArdenne> .
 <http://abc/mondial/10/rivers/Marne>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/IledeFrance> .
 <http://abc/mondial/10/rivers/Tajo>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CastileLaMancha> .
 <http://abc/mondial/10/rivers/Tajo>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Estremadura> .
 <http://abc/mondial/10/rivers/Tajo>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/CasteloBranco> .
 <http://abc/mondial/10/rivers/Tajo>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Lisbon> .
 <http://abc/mondial/10/rivers/Tajo>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Portalegre> .
 <http://abc/mondial/10/rivers/Tajo>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Santarem> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CastileandLeon> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Aveiro> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Braganca> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Guarda> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Porto> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/VilaReal> .
 <http://abc/mondial/10/rivers/Douro>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Viseu> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Andalusia> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CastileLaMancha> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Estremadura> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Beja> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Evora> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Algarve> .
 <http://abc/mondial/10/rivers/Guadiana>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Portalegre> .
 <http://abc/mondial/10/rivers/Guadalquivir>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Andalusia> .
 <http://abc/mondial/10/rivers/Ebro>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Aragon> .
 <http://abc/mondial/10/rivers/Ebro>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/BasqueCountry> .
 <http://abc/mondial/10/rivers/Ebro>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CastileandLeon> .
 <http://abc/mondial/10/rivers/Ebro>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Catalonia> .
 <http://abc/mondial/10/rivers/Ebro>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Navarre> .
 <http://abc/mondial/10/rivers/Ebro>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Rioja> .
 <http://abc/mondial/10/rivers/Po>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Piemonte> .
 <http://abc/mondial/10/rivers/Po>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lombardia> .
 <http://abc/mondial/10/rivers/Po>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Veneto> .
 <http://abc/mondial/10/rivers/Po>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> .
 <http://abc/mondial/10/rivers/Ticino>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Piemonte> .
 <http://abc/mondial/10/rivers/Ticino>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lombardia> .
 <http://abc/mondial/10/rivers/Ticino>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/TI> .
 <http://abc/mondial/10/rivers/Adda>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lombardia> .
 <http://abc/mondial/10/rivers/Mincio>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Veneto> .
 <http://abc/mondial/10/rivers/Etsch>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige> .
 <http://abc/mondial/10/rivers/Etsch>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Veneto> .
 <http://abc/mondial/10/rivers/Tiber>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Toscana> .
 <http://abc/mondial/10/rivers/Tiber>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Umbria> .
 <http://abc/mondial/10/rivers/Tiber>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lazio> .
 <http://abc/mondial/10/rivers/Arno>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Toscana> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Vienna> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/UpperAustria> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/LowerAustria> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Baranya> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/BacsKiskun> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Fejer> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/KomaromEsztergom> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Pest> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Tolna> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Budapest-munic.-> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Odeska> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Braila> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Calarasi> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/CarasSeverin> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Constanta> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Dolj> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Galati> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Giurgiu> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Ialomita> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Mehedinti> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Olt> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Teleorman> .
 <http://abc/mondial/10/rivers/Donau>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Tulcea> .
 <http://abc/mondial/10/rivers/Breg>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> .
 <http://abc/mondial/10/rivers/Brigach>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> .
 <http://abc/mondial/10/rivers/Iller>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Vorarlberg> .
 <http://abc/mondial/10/rivers/Iller>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> .
 <http://abc/mondial/10/rivers/Iller>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Lech>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Vorarlberg> .
 <http://abc/mondial/10/rivers/Lech>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Tyrol> .
 <http://abc/mondial/10/rivers/Lech>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Isar>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Tyrol> .
 <http://abc/mondial/10/rivers/Isar>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Ammer>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Wurm>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Inn>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Tyrol> .
 <http://abc/mondial/10/rivers/Inn>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Inn>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/GR> .
 <http://abc/mondial/10/rivers/Alz>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Salzach>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Salzburg> .
 <http://abc/mondial/10/rivers/Salzach>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Enns>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Salzburg> .
 <http://abc/mondial/10/rivers/March>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/LowerAustria> .
 <http://abc/mondial/10/rivers/March>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Jihomoravsky> .
 <http://abc/mondial/10/rivers/March>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky> .
 <http://abc/mondial/10/rivers/Raab>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Burgenland> .
 <http://abc/mondial/10/rivers/Raab>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Styria> .
 <http://abc/mondial/10/rivers/Raab>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/GyorSopron> .
 <http://abc/mondial/10/rivers/Raab>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Vas> .
 <http://abc/mondial/10/rivers/Raab>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Veszprem> .
 <http://abc/mondial/10/rivers/Raab>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Gyor-munic.-> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Carinthia> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Baranya> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Somogy> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Zala> .
 <http://abc/mondial/10/rivers/Drau>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige> .
 <http://abc/mondial/10/rivers/Mur>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Styria> .
 <http://abc/mondial/10/rivers/Mur>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Salzburg> .
 <http://abc/mondial/10/rivers/Mur>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Zala> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/BorsodAbaujZemplen> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Csongrad> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/HajduBihar> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Heves> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/SzabolcsSzatmar> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Szolnok> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Szeged-munic.-> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Chernivetska> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/IvanoFrankivska> .
 <http://abc/mondial/10/rivers/Theiss>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Zakarpatska> .
 <http://abc/mondial/10/rivers/Olt>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Brasov> .
 <http://abc/mondial/10/rivers/Olt>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Covasna> .
 <http://abc/mondial/10/rivers/Olt>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Harghita> .
 <http://abc/mondial/10/rivers/Olt>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Olt> .
 <http://abc/mondial/10/rivers/Olt>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Sibiu> .
 <http://abc/mondial/10/rivers/Olt>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Vilcea> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Chernivetska> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/IvanoFrankivska> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Botosani> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Galati> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Iasi> .
 <http://abc/mondial/10/rivers/Pruth>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Vaslui> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Chernivetska> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/IvanoFrankivska> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Khmelnytska> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Lvivska> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Odeska> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Ternopilska> .
 <http://abc/mondial/10/rivers/Dnjestr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Vinnytska> .
 <http://abc/mondial/10/rivers/Weser>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bremen> .
 <http://abc/mondial/10/rivers/Weser>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Hessen> .
 <http://abc/mondial/10/rivers/Weser>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/rivers/Weser>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> .
 <http://abc/mondial/10/rivers/Aller>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/rivers/Leine>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/rivers/Leine>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Thuringen> .
 <http://abc/mondial/10/rivers/Werra>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Hessen> .
 <http://abc/mondial/10/rivers/Werra>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/rivers/Werra>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Thuringen> .
 <http://abc/mondial/10/rivers/Fulda>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Hessen> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Severocesky> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Praha> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Brandenburg> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Hamburg> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Sachsen> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt> .
 <http://abc/mondial/10/rivers/Elbe>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/rivers/Moldau>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Jihocesky> .
 <http://abc/mondial/10/rivers/Moldau>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Praha> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Alsace> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Vorarlberg> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Hessen> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/NordrheinWestfalen> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/AG> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/BL> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/BS> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/GR> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/SG> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/SH> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/TG> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/ZH> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Gelderland> .
 <http://abc/mondial/10/rivers/Rhein>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/ZuidHolland> .
 <http://abc/mondial/10/rivers/Main>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/rivers/Main>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Hessen> .
 <http://abc/mondial/10/rivers/Mosel>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Lorraine> .
 <http://abc/mondial/10/rivers/Mosel>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> .
 <http://abc/mondial/10/rivers/Mosel>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Saarland> .
 <http://abc/mondial/10/rivers/Saar>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Alsace> .
 <http://abc/mondial/10/rivers/Saar>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Lorraine> .
 <http://abc/mondial/10/rivers/Saar>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> .
 <http://abc/mondial/10/rivers/Saar>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Saarland> .
 <http://abc/mondial/10/rivers/Neckar>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> .
 <http://abc/mondial/10/rivers/Aare>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/AG> .
 <http://abc/mondial/10/rivers/Aare>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/BE> .
 <http://abc/mondial/10/rivers/Aare>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/SO> .
 <http://abc/mondial/10/rivers/Reuss>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/AG> .
 <http://abc/mondial/10/rivers/Reuss>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/LU> .
 <http://abc/mondial/10/rivers/Reuss>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/UR> .
 <http://abc/mondial/10/rivers/Limmat>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/AG> .
 <http://abc/mondial/10/rivers/Limmat>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/ZH> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Severomoravsky> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Brandenburg> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Sachsen> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Gorzowskie> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Legnickie> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Opolskie> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Szczecinskie> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Wroclawskie> .
 <http://abc/mondial/10/rivers/Oder>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Zielonogorskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Warszwaskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Bielskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Bydgoskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Elblaskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Gdanskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Katowickie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Kieleckie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Krakowskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Lubelskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Plockie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Radomskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Rzeszowskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Siedleckie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Skierniewickie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Tarnobrzeskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Tarnowskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Torunskie> .
 <http://abc/mondial/10/rivers/Weichsel>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Wloclawskie> .
 <http://abc/mondial/10/rivers/Kura>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Kars> .
 <http://abc/mondial/10/rivers/Tigris>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Batman> .
 <http://abc/mondial/10/rivers/Tigris>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Diyarbakir> .
 <http://abc/mondial/10/rivers/Tigris>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Mardin> .
 <http://abc/mondial/10/rivers/Tigris>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Siirt> .
 <http://abc/mondial/10/rivers/Tigris>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Sirnak> .
 <http://abc/mondial/10/rivers/Euphrat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Adiyaman> .
 <http://abc/mondial/10/rivers/Euphrat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Gaziantep> .
 <http://abc/mondial/10/rivers/Euphrat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Malatya> .
 <http://abc/mondial/10/rivers/Euphrat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Sanliurfa> .
 <http://abc/mondial/10/rivers/Murat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Agri> .
 <http://abc/mondial/10/rivers/Murat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Bingol> .
 <http://abc/mondial/10/rivers/Murat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Elazig> .
 <http://abc/mondial/10/rivers/Murat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Mus> .
 <http://abc/mondial/10/rivers/Karasu>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Erzincan> .
 <http://abc/mondial/10/rivers/Karasu>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Erzurum> .
 <http://abc/mondial/10/rivers/NorthernDwina>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast> .
 <http://abc/mondial/10/rivers/NorthernDwina>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast> .
 <http://abc/mondial/10/rivers/Suchona>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast> .
 <http://abc/mondial/10/rivers/Petschora>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi> .
 <http://abc/mondial/10/rivers/Petschora>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Arkhangelskayaoblast> .
 <http://abc/mondial/10/rivers/Newa>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast> .
 <http://abc/mondial/10/rivers/Swir>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast> .
 <http://abc/mondial/10/rivers/Narva>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast> .
 <http://abc/mondial/10/rivers/WesternDwina>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Smolenskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Ivanovskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kostromskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tverskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Yaroslavskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofMariyEl> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/ChuvashRepublic> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofTatarstan> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Penzenskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Samarskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Saratovskayaoblast> .
 <http://abc/mondial/10/rivers/Volga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Ulyanovskayaoblast> .
 <http://abc/mondial/10/rivers/Oka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Vladimirskayaoblast> .
 <http://abc/mondial/10/rivers/Oka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kaluzhskayaoblast> .
 <http://abc/mondial/10/rivers/Oka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Moskovskayaoblast> .
 <http://abc/mondial/10/rivers/Oka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Orjolskayaoblast> .
 <http://abc/mondial/10/rivers/Oka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Ryazanskayaoblast> .
 <http://abc/mondial/10/rivers/Oka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast> .
 <http://abc/mondial/10/rivers/Oka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Nizhegorodskayaoblast> .
 <http://abc/mondial/10/rivers/Don>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tulskayaoblast> .
 <http://abc/mondial/10/rivers/Don>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Voronezhskayaoblast> .
 <http://abc/mondial/10/rivers/Don>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Lipetskayaoblast> .
 <http://abc/mondial/10/rivers/Don>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Volgogradskayaoblast> .
 <http://abc/mondial/10/rivers/Don>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rostovskayaoblast> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Cherkaska> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Chernihivska> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Dnipropetrovska> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Khersonska> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Kyyivska> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Kirovohradska> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Poltavska> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/UA/provinces/Zaporizka> .
 <http://abc/mondial/10/rivers/Dnepr>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Smolenskayaoblast> .
 <http://abc/mondial/10/rivers/Ural>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofBashkortostan> .
 <http://abc/mondial/10/rivers/Ural>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast> .
 <http://abc/mondial/10/rivers/Ural>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Chelyabinskayaoblast> .
 <http://abc/mondial/10/rivers/Ob>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Altayskiykray> .
 <http://abc/mondial/10/rivers/Ob>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Novosibirskayaoblast> .
 <http://abc/mondial/10/rivers/Ob>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tomskayaoblast> .
 <http://abc/mondial/10/rivers/Ob>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> .
 <http://abc/mondial/10/rivers/Irtysch>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Omskayaoblast> .
 <http://abc/mondial/10/rivers/Irtysch>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> .
 <http://abc/mondial/10/rivers/Tobol>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Orenburgskayaoblast> .
 <http://abc/mondial/10/rivers/Tobol>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kurganskayaoblast> .
 <http://abc/mondial/10/rivers/Tobol>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> .
 <http://abc/mondial/10/rivers/Ischim>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Omskayaoblast> .
 <http://abc/mondial/10/rivers/Ischim>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Tyumenskayaoblast> .
 <http://abc/mondial/10/rivers/Katun>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofAltay> .
 <http://abc/mondial/10/rivers/Katun>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Altayskiykray> .
 <http://abc/mondial/10/rivers/Jenissej>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofTyva> .
 <http://abc/mondial/10/rivers/Jenissej>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKhakassiya> .
 <http://abc/mondial/10/rivers/Jenissej>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> .
 <http://abc/mondial/10/rivers/Angara>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya> .
 <http://abc/mondial/10/rivers/Angara>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> .
 <http://abc/mondial/10/rivers/Angara>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> .
 <http://abc/mondial/10/rivers/Chatanga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> .
 <http://abc/mondial/10/rivers/Lena>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> .
 <http://abc/mondial/10/rivers/Lena>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha> .
 <http://abc/mondial/10/rivers/Amur>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast> .
 <http://abc/mondial/10/rivers/Amur>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Yevreyskayaavt.oblast> .
 <http://abc/mondial/10/rivers/Amur>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Khabarovskiykray> .
 <http://abc/mondial/10/rivers/Amur>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Amurskayaoblast> .
 <http://abc/mondial/10/rivers/Schilka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast> .
 <http://abc/mondial/10/rivers/Argun>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Chitinskayaoblast> .
 <http://abc/mondial/10/rivers/Kolyma>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha> .
 <http://abc/mondial/10/rivers/Kolyma>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Magadanskayaoblast> .
 <http://abc/mondial/10/lakes/Inari>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Lappia> .
 <http://abc/mondial/10/lakes/Oulujaervi>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Oulu> .
 <http://abc/mondial/10/lakes/Kallavesi>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Kuopio> .
 <http://abc/mondial/10/lakes/Saimaa>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Kymi> .
 <http://abc/mondial/10/lakes/Saimaa>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Mikkeli> .
 <http://abc/mondial/10/lakes/Paeijaenne>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Haeme> .
 <http://abc/mondial/10/lakes/Paeijaenne>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Suomi> .
 <http://abc/mondial/10/lakes/Mjoesa-See>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Hedmark> .
 <http://abc/mondial/10/lakes/Mjoesa-See>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Oppland> .
 <http://abc/mondial/10/lakes/Storuman>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Vasterbotten> .
 <http://abc/mondial/10/lakes/Siljan>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Dalarna> .
 <http://abc/mondial/10/lakes/Maelaren>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Sodermanland> .
 <http://abc/mondial/10/lakes/Maelaren>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Stockholm> .
 <http://abc/mondial/10/lakes/Maelaren>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Uppsala> .
 <http://abc/mondial/10/lakes/Maelaren>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Vastmanland> .
 <http://abc/mondial/10/lakes/Vaenern>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Alvsborg> .
 <http://abc/mondial/10/lakes/Vaenern>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Skaraborg> .
 <http://abc/mondial/10/lakes/Vaenern>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Varmland> .
 <http://abc/mondial/10/lakes/Vaettern>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Jonkoping> .
 <http://abc/mondial/10/lakes/Vaettern>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Orebro> .
 <http://abc/mondial/10/lakes/Vaettern>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Ostergotland> .
 <http://abc/mondial/10/lakes/Vaettern>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Skaraborg> .
 <http://abc/mondial/10/lakes/LochNess>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Central> .
 <http://abc/mondial/10/lakes/LochNess>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Strathclyde> .
 <http://abc/mondial/10/lakes/LochLomond>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Highland> .
 <http://abc/mondial/10/lakes/Bodensee>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Vorarlberg> .
 <http://abc/mondial/10/lakes/Bodensee>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> .
 <http://abc/mondial/10/lakes/Bodensee>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/lakes/Bodensee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/SG> .
 <http://abc/mondial/10/lakes/Bodensee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/TG> .
 <http://abc/mondial/10/lakes/Chiemsee>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/lakes/StarnbergerSee>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/lakes/Ammersee>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/lakes/LaacherMaar>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/RheinlandPfalz> .
 <http://abc/mondial/10/lakes/LacLeman>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> .
 <http://abc/mondial/10/lakes/LacLeman>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/GE> .
 <http://abc/mondial/10/lakes/LacLeman>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/VS> .
 <http://abc/mondial/10/lakes/LacLeman>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/VD> .
 <http://abc/mondial/10/lakes/Zurichsee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/GL> .
 <http://abc/mondial/10/lakes/Zurichsee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/SZ> .
 <http://abc/mondial/10/lakes/Zurichsee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/ZH> .
 <http://abc/mondial/10/lakes/Thunersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/BE> .
 <http://abc/mondial/10/lakes/Brienzersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/BE> .
 <http://abc/mondial/10/lakes/Vierwaldstattersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/LU> .
 <http://abc/mondial/10/lakes/Vierwaldstattersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/NW> .
 <http://abc/mondial/10/lakes/Vierwaldstattersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/OW> .
 <http://abc/mondial/10/lakes/Vierwaldstattersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/SZ> .
 <http://abc/mondial/10/lakes/Vierwaldstattersee>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/UR> .
 <http://abc/mondial/10/lakes/LagodiGarda>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lombardia> .
 <http://abc/mondial/10/lakes/LagodiGarda>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Veneto> .
 <http://abc/mondial/10/lakes/LagoMaggiore>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Piemonte> .
 <http://abc/mondial/10/lakes/LagoMaggiore>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lombardia> .
 <http://abc/mondial/10/lakes/LagoMaggiore>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/TI> .
 <http://abc/mondial/10/lakes/LagodiComo>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lombardia> .
 <http://abc/mondial/10/lakes/LagoTrasimeno>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Toscana> .
 <http://abc/mondial/10/lakes/LagoTrasimeno>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Umbria> .
 <http://abc/mondial/10/lakes/LagodiBolsena>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lazio> .
 <http://abc/mondial/10/lakes/LagodiBracciano>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lazio> .
 <http://abc/mondial/10/lakes/Neusiedlersee>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Burgenland> .
 <http://abc/mondial/10/lakes/Neusiedlersee>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/GyorSopron> .
 <http://abc/mondial/10/lakes/Balaton>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Fejer> .
 <http://abc/mondial/10/lakes/Balaton>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Somogy> .
 <http://abc/mondial/10/lakes/Balaton>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Veszprem> .
 <http://abc/mondial/10/lakes/Balaton>
      :locatedIn
     <http://abc/mondial/10/countries/H/provinces/Zala> .
 <http://abc/mondial/10/lakes/LakePrespa>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/DhytikiMakedhonia> .
 <http://abc/mondial/10/lakes/LakeVan>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Bitlis> .
 <http://abc/mondial/10/lakes/LakeVan>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Van> .
 <http://abc/mondial/10/lakes/LakeKeban>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Elazig> .
 <http://abc/mondial/10/lakes/LakeKeban>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Malatya> .
 <http://abc/mondial/10/lakes/LakeKeban>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Tunceli> .
 <http://abc/mondial/10/lakes/CaspianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKalmykiya> .
 <http://abc/mondial/10/lakes/CaspianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast> .
 <http://abc/mondial/10/lakes/CaspianSea>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofDagestan> .
 <http://abc/mondial/10/lakes/OzeroLadoga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia> .
 <http://abc/mondial/10/lakes/OzeroLadoga>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast> .
 <http://abc/mondial/10/lakes/OzeroOnega>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKarelia> .
 <http://abc/mondial/10/lakes/OzeroOnega>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Vologodskayaoblast> .
 <http://abc/mondial/10/lakes/OzeroOnega>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Leningradskayaoblast> .
 <http://abc/mondial/10/lakes/OzeroPskovskoje>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Pskovskayaoblast> .
 <http://abc/mondial/10/lakes/OzeroBaikal>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya> .
 <http://abc/mondial/10/lakes/OzeroBaikal>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Irkutskayaoblast> .
 <http://abc/mondial/10/lakes/OzeroTaimyr>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Krasnoyarskiykray> .
 <http://abc/mondial/10/lakes/OzeroChanka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Primorskykray> .
 <http://abc/mondial/10/lakes/OzeroTschany>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Novosibirskayaoblast> .
 <http://abc/mondial/10/islands/Aust-Vagoey>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Nordland> .
 <http://abc/mondial/10/islands/Ireland>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/NorthernIreland> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Avon> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Bedfordshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Berkshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Buckinghamshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cambridgeshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cheshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cleveland> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cornwall> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cumbria> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Derbyshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Devon> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Dorset> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Durham> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/EastSussex> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Essex> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Gloucestershire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/GreaterLondon> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/GreaterManchester> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Hampshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/HerefordandWorcester> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Hertfordshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Humberside> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Kent> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Lancashire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Leicestershire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Lincolnshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Merseyside> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Norfolk> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Northamptonshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Northumberland> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/NorthYorkshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Nottinghamshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Oxfordshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Shropshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Somerset> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/SouthYorkshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Staffordshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Suffolk> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Surrey> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/TyneandWear> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Warwickshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/WestMidlands> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/WestSussex> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/WestYorkshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Wiltshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Borders> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Central> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/DumfriesandGalloway> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Fife> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Grampian> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Highland> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Lothian> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Strathclyde> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Tayside> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/AberconwyandColwyn> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/BlaenauGwent> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Bridgend> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Caerphilly> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cardiff> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Carmarthenshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Ceredigion> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Denbighshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Flintshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Gwynedd> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/MerthyrTydfil> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Monmouthshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/NeathandPortTalbot> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Newport> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Pembrokeshire> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Powys> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/RhonddaCynonTaff> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Swansea> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Torfaen> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/ValeofGlamorgan> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Wrexham> .
 <http://abc/mondial/10/islands/ShetlandMainland>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Shetland> .
 <http://abc/mondial/10/islands/OrkneyMainland>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Orkneys> .
 <http://abc/mondial/10/islands/SouthRonaldsay>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Orkneys> .
 <http://abc/mondial/10/islands/Hoy>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Orkneys> .
 <http://abc/mondial/10/islands/Westray>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Orkneys> .
 <http://abc/mondial/10/islands/Barra>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/OuterHebrides> .
 <http://abc/mondial/10/islands/SouthUist>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/OuterHebrides> .
 <http://abc/mondial/10/islands/Benbecula>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/OuterHebrides> .
 <http://abc/mondial/10/islands/NorthUist>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/OuterHebrides> .
 <http://abc/mondial/10/islands/LewisandHarris>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/OuterHebrides> .
 <http://abc/mondial/10/islands/Skye>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Highland> .
 <http://abc/mondial/10/islands/Rhum>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Highland> .
 <http://abc/mondial/10/islands/Mull>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Highland> .
 <http://abc/mondial/10/islands/Islay>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Strathclyde> .
 <http://abc/mondial/10/islands/Jura>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Strathclyde> .
 <http://abc/mondial/10/islands/Arran>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Strathclyde> .
 <http://abc/mondial/10/islands/Anglesey>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Anglesey> .
 <http://abc/mondial/10/islands/IsleofWight>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/IsleofWight> .
 <http://abc/mondial/10/islands/Lundy>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Devon> .
 <http://abc/mondial/10/islands/BishopRock>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Cornwall> .
 <http://abc/mondial/10/islands/Gotland>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Gotland> .
 <http://abc/mondial/10/islands/Oeland>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Kalmar> .
 <http://abc/mondial/10/islands/Aland>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Aland> .
 <http://abc/mondial/10/islands/Helgoland>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/islands/Fehmarn>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/islands/Rugen>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern> .
 <http://abc/mondial/10/islands/Usedom>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/MecklenburgVorpommern> .
 <http://abc/mondial/10/islands/Usedom>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Szczecinskie> .
 <http://abc/mondial/10/islands/Sylt>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/islands/Fohr>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/islands/Amrum>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/islands/Pellworm>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SchleswigHolstein> .
 <http://abc/mondial/10/islands/Wangerooge>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/islands/Spiekeroog>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/islands/Langeoog>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/islands/Baltrum>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/islands/Norderney>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/islands/Juist>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/islands/Borkum>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Niedersachsen> .
 <http://abc/mondial/10/islands/Schiermonnikoog>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Friesland> .
 <http://abc/mondial/10/islands/Ameland>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Friesland> .
 <http://abc/mondial/10/islands/Terschelling>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Friesland> .
 <http://abc/mondial/10/islands/Vlieland>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/Friesland> .
 <http://abc/mondial/10/islands/Texel>
      :locatedIn
     <http://abc/mondial/10/countries/NL/provinces/NoordHolland> .
 <http://abc/mondial/10/islands/Korfu>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi> .
 <http://abc/mondial/10/islands/Lefkas>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi> .
 <http://abc/mondial/10/islands/Kefallinia>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi> .
 <http://abc/mondial/10/islands/Zakinthos>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/IonioiNisoi> .
 <http://abc/mondial/10/islands/Kreta>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/Kriti> .
 <http://abc/mondial/10/islands/Chios>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion> .
 <http://abc/mondial/10/islands/Samos>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion> .
 <http://abc/mondial/10/islands/Ikaria>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion> .
 <http://abc/mondial/10/islands/Lesbos>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/VoreionAiyaion> .
 <http://abc/mondial/10/islands/Kos>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion> .
 <http://abc/mondial/10/islands/Rhodos>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/NotionAiyaion> .
 <http://abc/mondial/10/islands/Alicudi>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Calabria> .
 <http://abc/mondial/10/islands/Filicudi>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Calabria> .
 <http://abc/mondial/10/islands/Salina>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Calabria> .
 <http://abc/mondial/10/islands/Lipari>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Calabria> .
 <http://abc/mondial/10/islands/Vulcano>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Calabria> .
 <http://abc/mondial/10/islands/Panarea>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Calabria> .
 <http://abc/mondial/10/islands/Stromboli>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Calabria> .
 <http://abc/mondial/10/islands/Lampedusa>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Sicilia> .
 <http://abc/mondial/10/islands/Linosa>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Sicilia> .
 <http://abc/mondial/10/islands/Sicilia>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Sicilia> .
 <http://abc/mondial/10/islands/Sardegna>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Sardegna> .
 <http://abc/mondial/10/islands/Corse>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Corse> .
 <http://abc/mondial/10/islands/Menorca>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/BalearicIslands> .
 <http://abc/mondial/10/islands/Mallorca>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/BalearicIslands> .
 <http://abc/mondial/10/islands/Ibiza>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/BalearicIslands> .
 <http://abc/mondial/10/islands/Formentera>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/BalearicIslands> .
 <http://abc/mondial/10/islands/Lanzarote>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/islands/Fuerteventura>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/islands/GranCanaria>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/islands/Teneriffa>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/islands/Gomera>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/islands/Hierro>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/islands/LaPalma>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/islands/Madeira>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Madeira> .
 <http://abc/mondial/10/islands/PortoSanto>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Madeira> .
 <http://abc/mondial/10/islands/SaoMiguel>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/SantaMaria>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/Terceira>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/SaoJorge>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/Pico>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/Faial>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/Graciosa>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/Flores>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/Corvo>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/islands/KotelnyIsland>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofSakha> .
 <http://abc/mondial/10/islands/Paramuschir>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast> .
 <http://abc/mondial/10/islands/Olkhon>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya> .
 <http://abc/mondial/10/islands/Sachalin>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Sakhalinskayaoblast> .
 <http://abc/mondial/10/mountains/Haltiatunturi>
      :locatedIn
     <http://abc/mondial/10/countries/SF/provinces/Lappia> .
 <http://abc/mondial/10/mountains/Kebnekaise>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Norrbotten> .
 <http://abc/mondial/10/mountains/Sarektjokko>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Norrbotten> .
 <http://abc/mondial/10/mountains/Portefjaellen>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Norrbotten> .
 <http://abc/mondial/10/mountains/Tarrekaise>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Norrbotten> .
 <http://abc/mondial/10/mountains/Sulitjelma>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Nordland> .
 <http://abc/mondial/10/mountains/Sulitjelma>
      :locatedIn
     <http://abc/mondial/10/countries/S/provinces/Norrbotten> .
 <http://abc/mondial/10/mountains/Galdhoeppig>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Oppland> .
 <http://abc/mondial/10/mountains/Jostedalsbre>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/SognogFjordane> .
 <http://abc/mondial/10/mountains/Glittertind>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Oppland> .
 <http://abc/mondial/10/mountains/Joekul>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Hordaland> .
 <http://abc/mondial/10/mountains/Snoehetta>
      :locatedIn
     <http://abc/mondial/10/countries/N/provinces/Oppland> .
 <http://abc/mondial/10/mountains/BenNevis>
      :locatedIn
     <http://abc/mondial/10/countries/GB/provinces/Highland> .
 <http://abc/mondial/10/mountains/Feldberg>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/BadenWurttemberg> .
 <http://abc/mondial/10/mountains/Brocken>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/SachsenAnhalt> .
 <http://abc/mondial/10/mountains/GrosserArber>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/mountains/Zugspitze>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Tyrol> .
 <http://abc/mondial/10/mountains/Zugspitze>
      :locatedIn
     <http://abc/mondial/10/countries/D/provinces/Bayern> .
 <http://abc/mondial/10/mountains/MontBlanc>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> .
 <http://abc/mondial/10/mountains/MontBlanc>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/ValledAosta> .
 <http://abc/mondial/10/mountains/BarredesEcrins>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/RhoneAlpes> .
 <http://abc/mondial/10/mountains/GrandCombin>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/VS> .
 <http://abc/mondial/10/mountains/Matterhorn>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/ValledAosta> .
 <http://abc/mondial/10/mountains/Matterhorn>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/VS> .
 <http://abc/mondial/10/mountains/MonteRosa>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/ValledAosta> .
 <http://abc/mondial/10/mountains/MonteRosa>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lombardia> .
 <http://abc/mondial/10/mountains/MonteRosa>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/VS> .
 <http://abc/mondial/10/mountains/Finsteraarhorn>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/BL> .
 <http://abc/mondial/10/mountains/Finsteraarhorn>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/VS> .
 <http://abc/mondial/10/mountains/GranParadiso>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Piemonte> .
 <http://abc/mondial/10/mountains/GranParadiso>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/ValledAosta> .
 <http://abc/mondial/10/mountains/PizBernina>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Lombardia> .
 <http://abc/mondial/10/mountains/PizBernina>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/GR> .
 <http://abc/mondial/10/mountains/Crap_Sogn_Gion>
      :locatedIn
     <http://abc/mondial/10/countries/CH/provinces/GR> .
 <http://abc/mondial/10/mountains/Marmolata>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/TrentinoAltoAdige> .
 <http://abc/mondial/10/mountains/Marmolata>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Veneto> .
 <http://abc/mondial/10/mountains/Grossglockner>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Carinthia> .
 <http://abc/mondial/10/mountains/Hochgolling>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Styria> .
 <http://abc/mondial/10/mountains/Hochgolling>
      :locatedIn
     <http://abc/mondial/10/countries/A/provinces/Salzburg> .
 <http://abc/mondial/10/mountains/GrandBallon>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Alsace> .
 <http://abc/mondial/10/mountains/GrandBallon>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Lorraine> .
 <http://abc/mondial/10/mountains/PuyDeDome>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Auvergne> .
 <http://abc/mondial/10/mountains/PuydeSancy>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Auvergne> .
 <http://abc/mondial/10/mountains/Vignemale>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/MidiPyrenees> .
 <http://abc/mondial/10/mountains/Vignemale>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Aragon> .
 <http://abc/mondial/10/mountains/PicodeAneto>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Aragon> .
 <http://abc/mondial/10/mountains/TorredeCerredo>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Asturias> .
 <http://abc/mondial/10/mountains/TorredeCerredo>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CastileandLeon> .
 <http://abc/mondial/10/mountains/PicodeAlmanzor>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CastileandLeon> .
 <http://abc/mondial/10/mountains/Moncayo>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Aragon> .
 <http://abc/mondial/10/mountains/Moncayo>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CastileandLeon> .
 <http://abc/mondial/10/mountains/Mulhacen>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/Andalusia> .
 <http://abc/mondial/10/mountains/TorredeEstrela>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Guarda> .
 <http://abc/mondial/10/mountains/MonteCinto>
      :locatedIn
     <http://abc/mondial/10/countries/F/provinces/Corse> .
 <http://abc/mondial/10/mountains/GranSasso>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Abruzzo> .
 <http://abc/mondial/10/mountains/MonteFalterona>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/EmiliaRomagna> .
 <http://abc/mondial/10/mountains/MonteFalterona>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Toscana> .
 <http://abc/mondial/10/mountains/Vesuv>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Campania> .
 <http://abc/mondial/10/mountains/Etna>
      :locatedIn
     <http://abc/mondial/10/countries/I/provinces/Sicilia> .
 <http://abc/mondial/10/mountains/Schneekoppe>
      :locatedIn
     <http://abc/mondial/10/countries/CZ/provinces/Vychodocesky> .
 <http://abc/mondial/10/mountains/Schneekoppe>
      :locatedIn
     <http://abc/mondial/10/countries/PL/provinces/Walbrzyskie> .
 <http://abc/mondial/10/mountains/Moldoveanu>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Arges> .
 <http://abc/mondial/10/mountains/Moldoveanu>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Brasov> .
 <http://abc/mondial/10/mountains/Moldoveanu>
      :locatedIn
     <http://abc/mondial/10/countries/RO/provinces/Sibiu> .
 <http://abc/mondial/10/mountains/Olymp>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/KedrikiMakedhonia> .
 <http://abc/mondial/10/mountains/Olymp>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/Thessalia> .
 <http://abc/mondial/10/mountains/Psiloritis>
      :locatedIn
     <http://abc/mondial/10/countries/GR/provinces/Kriti> .
 <http://abc/mondial/10/mountains/PicodeTeide>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/mountains/PicodelosNieves>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/mountains/RoquedelosMuchachos>
      :locatedIn
     <http://abc/mondial/10/countries/E/provinces/CanaryIslands> .
 <http://abc/mondial/10/mountains/PicoRuivo>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Madeira> .
 <http://abc/mondial/10/mountains/Pico>
      :locatedIn
     <http://abc/mondial/10/countries/P/provinces/Azores> .
 <http://abc/mondial/10/mountains/Narodnaja>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKomi> .
 <http://abc/mondial/10/mountains/Demirkazik>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Nigde> .
 <http://abc/mondial/10/mountains/Ararat>
      :locatedIn
     <http://abc/mondial/10/countries/TR/provinces/Agri> .
 <http://abc/mondial/10/mountains/Elbrus>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/KabardinoBalkarRep.> .
 <http://abc/mondial/10/mountains/Kasbek>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofNorthOssetiya> .
 <http://abc/mondial/10/mountains/Zhima>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofBuryatiya> .
 <http://abc/mondial/10/mountains/Bjelucha>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofAltay> .
 <http://abc/mondial/10/mountains/KljutschewskajaSopka>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Kamchatskayaoblast> .
 <http://abc/mondial/10/deserts/Ryn>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Rep.ofKalmykiya> .
 <http://abc/mondial/10/deserts/Ryn>
      :locatedIn
     <http://abc/mondial/10/countries/R/provinces/Astrakhanskayaoblast> .
 <http://abc/mondial/10/seas/Skagerrak> :borders
   <http://abc/mondial/10/seas/Kattegat> .
 <http://abc/mondial/10/seas/Skagerrak> :borders
   <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/seas/Kattegat> :borders
   <http://abc/mondial/10/seas/Skagerrak> .
 <http://abc/mondial/10/seas/Kattegat> :borders
   <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/seas/NorthSea> :borders
   <http://abc/mondial/10/seas/Skagerrak> .
 <http://abc/mondial/10/seas/NorthSea> :borders
   <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/seas/NorthSea> :borders
   <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/seas/NorthSea> :borders
   <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/seas/TheChannel> :borders
   <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/seas/TheChannel> :borders
   <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/seas/BlackSea> :borders
   <http://abc/mondial/10/seas/SeaofAzov> .
 <http://abc/mondial/10/seas/BlackSea> :borders
   <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/seas/SeaofAzov> :borders
   <http://abc/mondial/10/seas/BlackSea> .
 <http://abc/mondial/10/seas/BalticSea> :borders
   <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/seas/AtlanticOcean> :borders
   <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/seas/AtlanticOcean> :borders
   <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/seas/AtlanticOcean> :borders
   <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/seas/AtlanticOcean> :borders
   <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/seas/AtlanticOcean> :borders
   <http://abc/mondial/10/seas/ArcticOcean> .
 <http://abc/mondial/10/seas/AtlanticOcean> :borders
   <http://abc/mondial/10/seas/PacificOcean> .
 <http://abc/mondial/10/seas/AtlanticOcean> :borders
   <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/seas/MediterraneanSea> :borders
   <http://abc/mondial/10/seas/BlackSea> .
 <http://abc/mondial/10/seas/MediterraneanSea> :borders
   <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/seas/NorwegianSea> :borders
   <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/seas/NorwegianSea> :borders
   <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/seas/NorwegianSea> :borders
   <http://abc/mondial/10/seas/ArcticOcean> .
 <http://abc/mondial/10/seas/BarentsSea> :borders
   <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/seas/BarentsSea> :borders
   <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/seas/BarentsSea> :borders
   <http://abc/mondial/10/seas/SibirianSea> .
 <http://abc/mondial/10/seas/BarentsSea> :borders
   <http://abc/mondial/10/seas/ArcticOcean> .
 <http://abc/mondial/10/seas/SibirianSea> :borders
   <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/seas/SibirianSea> :borders
   <http://abc/mondial/10/seas/ArcticOcean> .
 <http://abc/mondial/10/seas/ArcticOcean> :borders
   <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/seas/ArcticOcean> :borders
   <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/seas/ArcticOcean> :borders
   <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/seas/ArcticOcean> :borders
   <http://abc/mondial/10/seas/SibirianSea> .
 <http://abc/mondial/10/seas/ArcticOcean> :borders
   <http://abc/mondial/10/seas/BeringSea> .
 <http://abc/mondial/10/seas/BeringSea> :borders
   <http://abc/mondial/10/seas/ArcticOcean> .
 <http://abc/mondial/10/seas/BeringSea> :borders
   <http://abc/mondial/10/seas/PacificOcean> .
 <http://abc/mondial/10/seas/PacificOcean> :borders
   <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/seas/PacificOcean> :borders
   <http://abc/mondial/10/seas/BeringSea> .
 <http://abc/mondial/10/seas/PacificOcean> :borders
   <http://abc/mondial/10/seas/SeaofOkhotsk> .
 <http://abc/mondial/10/seas/PacificOcean> :borders
   <http://abc/mondial/10/seas/SeaofJapan> .
 <http://abc/mondial/10/seas/SeaofOkhotsk> :borders
   <http://abc/mondial/10/seas/PacificOcean> .
 <http://abc/mondial/10/seas/SeaofOkhotsk> :borders
   <http://abc/mondial/10/seas/SeaofJapan> .
 <http://abc/mondial/10/seas/SeaofJapan> :borders
   <http://abc/mondial/10/seas/PacificOcean> .
 <http://abc/mondial/10/seas/SeaofJapan> :borders
   <http://abc/mondial/10/seas/SeaofOkhotsk> .
 <http://abc/mondial/10/seas/IrishSea> :borders
   <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Svalbard>
      :locatedInSea
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/islands/Svalbard>
      :locatedInSea
     <http://abc/mondial/10/seas/BarentsSea> .
 <http://abc/mondial/10/islands/Svalbard>
      :locatedInSea
     <http://abc/mondial/10/seas/ArcticOcean> .
 <http://abc/mondial/10/islands/Iceland>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Iceland>
      :locatedInSea
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/islands/Aust-Vagoey>
      :locatedInSea
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/islands/Streymoy>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Streymoy>
      :locatedInSea
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/islands/Ireland>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Ireland>
      :locatedInSea
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedInSea
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/GreatBritain>
      :locatedInSea
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/islands/ShetlandMainland>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/ShetlandMainland>
      :locatedInSea
     <http://abc/mondial/10/seas/NorwegianSea> .
 <http://abc/mondial/10/islands/OrkneyMainland>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/SouthRonaldsay>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Hoy>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Westray>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Barra>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/SouthUist>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Benbecula>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/NorthUist>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/LewisandHarris>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Skye>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Rhum>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Mull>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Islay>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Jura>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Arran>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/IsleofMan>
      :locatedInSea
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/islands/Anglesey>
      :locatedInSea
     <http://abc/mondial/10/seas/IrishSea> .
 <http://abc/mondial/10/islands/IsleofWight>
      :locatedInSea
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/islands/Lundy>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/BishopRock>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Guernsey>
      :locatedInSea
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/islands/Jersey>
      :locatedInSea
     <http://abc/mondial/10/seas/TheChannel> .
 <http://abc/mondial/10/islands/Gotland>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Oeland>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Aland>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Dagoe>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Oesel>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Seeland>
      :locatedInSea
     <http://abc/mondial/10/seas/Kattegat> .
 <http://abc/mondial/10/islands/Seeland>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Fuenen>
      :locatedInSea
     <http://abc/mondial/10/seas/Kattegat> .
 <http://abc/mondial/10/islands/Fuenen>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Langeland>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Falster>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Lolland>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Bornholm>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Helgoland>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Fehmarn>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Rugen>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Usedom>
      :locatedInSea
     <http://abc/mondial/10/seas/BalticSea> .
 <http://abc/mondial/10/islands/Sylt>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Fohr>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Amrum>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Pellworm>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Wangerooge>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Spiekeroog>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Langeoog>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Baltrum>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Norderney>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Juist>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Borkum>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Schiermonnikoog>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Ameland>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Terschelling>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Vlieland>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Texel>
      :locatedInSea
     <http://abc/mondial/10/seas/NorthSea> .
 <http://abc/mondial/10/islands/Korfu>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Lefkas>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Kefallinia>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Zakinthos>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Kreta>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Chios>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Samos>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Ikaria>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Lesbos>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Kos>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Rhodos>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Cyprus>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Alicudi>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Filicudi>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Salina>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Lipari>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Vulcano>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Panarea>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Stromboli>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Lampedusa>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Linosa>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Sicilia>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Malta>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Gozo>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Sardegna>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Corse>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Menorca>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Mallorca>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Ibiza>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Formentera>
      :locatedInSea
     <http://abc/mondial/10/seas/MediterraneanSea> .
 <http://abc/mondial/10/islands/Lanzarote>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Fuerteventura>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/GranCanaria>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Teneriffa>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Gomera>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Hierro>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/LaPalma>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Madeira>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/PortoSanto>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/SaoMiguel>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/SantaMaria>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Terceira>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/SaoJorge>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Pico>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Faial>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Graciosa>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Flores>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/Corvo>
      :locatedInSea
     <http://abc/mondial/10/seas/AtlanticOcean> .
 <http://abc/mondial/10/islands/KotelnyIsland>
      :locatedInSea
     <http://abc/mondial/10/seas/SibirianSea> .
 <http://abc/mondial/10/islands/KotelnyIsland>
      :locatedInSea
     <http://abc/mondial/10/seas/ArcticOcean> .
 <http://abc/mondial/10/islands/Paramuschir>
      :locatedInSea
     <http://abc/mondial/10/seas/PacificOcean> .
 <http://abc/mondial/10/islands/Paramuschir>
      :locatedInSea
     <http://abc/mondial/10/seas/SeaofOkhotsk> .
 <http://abc/mondial/10/islands/Sachalin>
      :locatedInSea
     <http://abc/mondial/10/seas/SeaofOkhotsk> .
 <http://abc/mondial/10/islands/Sachalin>
      :locatedInSea
     <http://abc/mondial/10/seas/SeaofJapan> .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Albanian>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 21] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Macedonian>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 70] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Turkish>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 3] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Serbian>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 3] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Serbian>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 88.3] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Hungarian>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 3.8] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Bosnian>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 1.8] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Roma>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 1.1] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Serbian>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 63.6] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Montenegrin>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 22] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Bosnian>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 5.5] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Albanian>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 5.3] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/French>; 
    :ofCountry <http://abc/mondial/10/countries/F>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Catalan>; 
    :ofCountry <http://abc/mondial/10/countries/E>;
    :percent 17] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Galician>; 
    :ofCountry <http://abc/mondial/10/countries/E>;
    :percent 7] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Basque>; 
    :ofCountry <http://abc/mondial/10/countries/E>;
    :percent 2] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/German>; 
    :ofCountry <http://abc/mondial/10/countries/A>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/German>; 
    :ofCountry <http://abc/mondial/10/countries/D>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Hungarian>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 98.2] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Slovenian>; 
    :ofCountry <http://abc/mondial/10/countries/SLO>;
    :percent 91] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Croatian>; 
    :ofCountry <http://abc/mondial/10/countries/SLO>;
    :percent 7] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/French>; 
    :ofCountry <http://abc/mondial/10/countries/CH>;
    :percent 18] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/German>; 
    :ofCountry <http://abc/mondial/10/countries/CH>;
    :percent 65] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Italian>; 
    :ofCountry <http://abc/mondial/10/countries/CH>;
    :percent 12] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Romansch>; 
    :ofCountry <http://abc/mondial/10/countries/CH>;
    :percent 1] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Polish>; 
    :ofCountry <http://abc/mondial/10/countries/PL>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/R>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/French>; 
    :ofCountry <http://abc/mondial/10/countries/B>;
    :percent 32] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/German>; 
    :ofCountry <http://abc/mondial/10/countries/B>;
    :percent 1] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Dutch>; 
    :ofCountry <http://abc/mondial/10/countries/B>;
    :percent 56] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Dutch>; 
    :ofCountry <http://abc/mondial/10/countries/NL>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Serbo-Croatian>; 
    :ofCountry <http://abc/mondial/10/countries/BIH>;
    :percent 99] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Serbo-Croatian>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 96] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Bulgarian>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Swedish>; 
    :ofCountry <http://abc/mondial/10/countries/SF>;
    :percent 6.3] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Finnish>; 
    :ofCountry <http://abc/mondial/10/countries/SF>;
    :percent 93.5] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Norwegian>; 
    :ofCountry <http://abc/mondial/10/countries/N>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Swedish>; 
    :ofCountry <http://abc/mondial/10/countries/S>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Icelandic>; 
    :ofCountry <http://abc/mondial/10/countries/IS>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Italian>; 
    :ofCountry <http://abc/mondial/10/countries/RSM>;
    :percent 100] .
 [ rdf:type :SpokenBy ; :onLanguage <http://abc/mondial/10/Languages/Portuguese>; 
    :ofCountry <http://abc/mondial/10/countries/P>;
    :percent 100] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/AL>;
    :percent 70] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/AL>;
    :percent 10] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/AL>;
    :percent 20] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/GR>;
    :percent 1.3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/GR>;
    :percent 98] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 30] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 67] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 85] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 3.2] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 5.5] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 1.1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 74.2] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 17.7] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 3.5] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/AND>;
    :percent 100] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/F>;
    :percent 1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Jewish>; 
    :ofCountry <http://abc/mondial/10/countries/F>;
    :percent 1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/F>;
    :percent 90] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/F>;
    :percent 2] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/E>;
    :percent 99] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/A>;
    :percent 85] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/A>;
    :percent 6] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 39.2] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 4.6] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/D>;
    :percent 37] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/D>;
    :percent 45] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 67.5] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 25] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/I>;
    :percent 98] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/FL>;
    :percent 87.3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/FL>;
    :percent 8.3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 60.3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 8.4] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 4.1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/SLO>;
    :percent 1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/SLO>;
    :percent 96] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/CH>;
    :percent 47.6] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/CH>;
    :percent 44.3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/BY>;
    :percent 60] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/PL>;
    :percent 95] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/B>;
    :percent 75] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/B>;
    :percent 25] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/L>;
    :percent 97] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Jewish>; 
    :ofCountry <http://abc/mondial/10/countries/L>;
    :percent 3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/NL>;
    :percent 3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/NL>;
    :percent 34] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/NL>;
    :percent 25] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/BIH>;
    :percent 40] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/BIH>;
    :percent 4] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/BIH>;
    :percent 31] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/BIH>;
    :percent 15] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 0.4] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 11.1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 76.5] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 1.2] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 13] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Jewish>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 0.8] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 0.7] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 85] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/RO>;
    :percent 6] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/RO>;
    :percent 6] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/RO>;
    :percent 70] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/TR>;
    :percent 99.8] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/DK>;
    :percent 91] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/DK>;
    :percent 2] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/FARX>;
    :percent 100] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/SF>;
    :percent 1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/SF>;
    :percent 89] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/N>;
    :percent 87.8] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/N>;
    :percent 1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/S>;
    :percent 1.5] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/S>;
    :percent 94] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Pentecostal>; 
    :ofCountry <http://abc/mondial/10/countries/S>;
    :percent 1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/MC>;
    :percent 95] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/GBZ>;
    :percent 8] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Jewish>; 
    :ofCountry <http://abc/mondial/10/countries/GBZ>;
    :percent 2] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/GBZ>;
    :percent 74] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/GBZ>;
    :percent 11] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/V>;
    :percent 100] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/IS>;
    :percent 96] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/IS>;
    :percent 3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/IRL>;
    :percent 93] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Anglican>; 
    :ofCountry <http://abc/mondial/10/countries/IRL>;
    :percent 3] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/RSM>;
    :percent 100] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/M>;
    :percent 98] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Jewish>; 
    :ofCountry <http://abc/mondial/10/countries/MD>;
    :percent 1.5] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/MD>;
    :percent 98.5] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/RomanCatholic>; 
    :ofCountry <http://abc/mondial/10/countries/P>;
    :percent 97] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Protestant>; 
    :ofCountry <http://abc/mondial/10/countries/P>;
    :percent 1] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/CY>;
    :percent 18] .
 [ rdf:type :BelievedBy ; :onReligion <http://abc/mondial/10/Religions/ChristianOrthodox>; 
    :ofCountry <http://abc/mondial/10/countries/CY>;
    :percent 78] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Greeks>; 
    :ofCountry <http://abc/mondial/10/countries/AL>;
    :percent 3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Albanian>; 
    :ofCountry <http://abc/mondial/10/countries/AL>;
    :percent 95] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Greek>; 
    :ofCountry <http://abc/mondial/10/countries/GR>;
    :percent 98] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Albanian>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 22] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Serb>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Macedonian>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 65] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Turkish>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Gypsy>; 
    :ofCountry <http://abc/mondial/10/countries/MK>;
    :percent 3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Serb>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 82.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Montenegrin>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 0.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Hungarian>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 3.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Roma>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 1.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Bosniak>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 1.8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Croat>; 
    :ofCountry <http://abc/mondial/10/countries/SRB>;
    :percent 1.1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Montenegrin>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 43] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Serb>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 32] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Bosniak>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Albanian>; 
    :ofCountry <http://abc/mondial/10/countries/MNE>;
    :percent 5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Albanian>; 
    :ofCountry <http://abc/mondial/10/countries/KOS>;
    :percent 88] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Serb>; 
    :ofCountry <http://abc/mondial/10/countries/KOS>;
    :percent 7] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/French>; 
    :ofCountry <http://abc/mondial/10/countries/AND>;
    :percent 6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Spanish>; 
    :ofCountry <http://abc/mondial/10/countries/AND>;
    :percent 61] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Andorran>; 
    :ofCountry <http://abc/mondial/10/countries/AND>;
    :percent 30] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/MediterraneanNordic>; 
    :ofCountry <http://abc/mondial/10/countries/E>;
    :percent 100] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/German>; 
    :ofCountry <http://abc/mondial/10/countries/A>;
    :percent 99.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Slovene>; 
    :ofCountry <http://abc/mondial/10/countries/A>;
    :percent 0.2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Croat>; 
    :ofCountry <http://abc/mondial/10/countries/A>;
    :percent 0.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/German>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 0.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Polish>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 0.6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Roma>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 0.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Hungarian>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 0.2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Czech>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 94.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Slovak>; 
    :ofCountry <http://abc/mondial/10/countries/CZ>;
    :percent 3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Greek>; 
    :ofCountry <http://abc/mondial/10/countries/D>;
    :percent 0.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Turkish>; 
    :ofCountry <http://abc/mondial/10/countries/D>;
    :percent 2.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/German>; 
    :ofCountry <http://abc/mondial/10/countries/D>;
    :percent 95.1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Italian>; 
    :ofCountry <http://abc/mondial/10/countries/D>;
    :percent 0.7] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Polish>; 
    :ofCountry <http://abc/mondial/10/countries/D>;
    :percent 0.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Serb>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/German>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 2.6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Roma>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Hungarian>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 89.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Slovak>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 0.8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Romanian>; 
    :ofCountry <http://abc/mondial/10/countries/H>;
    :percent 0.7] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Italian>; 
    :ofCountry <http://abc/mondial/10/countries/FL>;
    :percent 5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Alemannic>; 
    :ofCountry <http://abc/mondial/10/countries/FL>;
    :percent 95] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/German>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 0.1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Polish>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 0.1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Roma>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 1.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Hungarian>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 10.7] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Czech>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Slovak>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 85.7] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ukrainian>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 0.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ruthenian>; 
    :ofCountry <http://abc/mondial/10/countries/SK>;
    :percent 0.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Serb>; 
    :ofCountry <http://abc/mondial/10/countries/SLO>;
    :percent 2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Slovene>; 
    :ofCountry <http://abc/mondial/10/countries/SLO>;
    :percent 91] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/SLO>;
    :percent 1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Croat>; 
    :ofCountry <http://abc/mondial/10/countries/SLO>;
    :percent 3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Polish>; 
    :ofCountry <http://abc/mondial/10/countries/BY>;
    :percent 4.1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ukrainian>; 
    :ofCountry <http://abc/mondial/10/countries/BY>;
    :percent 2.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/BY>;
    :percent 13.2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Byelorussian>; 
    :ofCountry <http://abc/mondial/10/countries/BY>;
    :percent 77.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Polish>; 
    :ofCountry <http://abc/mondial/10/countries/LV>;
    :percent 2.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ukrainian>; 
    :ofCountry <http://abc/mondial/10/countries/LV>;
    :percent 3.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/LV>;
    :percent 33.8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Byelorussian>; 
    :ofCountry <http://abc/mondial/10/countries/LV>;
    :percent 4.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Latvian>; 
    :ofCountry <http://abc/mondial/10/countries/LV>;
    :percent 51.8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Polish>; 
    :ofCountry <http://abc/mondial/10/countries/LT>;
    :percent 7.7] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/LT>;
    :percent 8.6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Byelorussian>; 
    :ofCountry <http://abc/mondial/10/countries/LT>;
    :percent 1.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Lithuanian>; 
    :ofCountry <http://abc/mondial/10/countries/LT>;
    :percent 80.1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/German>; 
    :ofCountry <http://abc/mondial/10/countries/PL>;
    :percent 1.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Polish>; 
    :ofCountry <http://abc/mondial/10/countries/PL>;
    :percent 97.6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ukrainian>; 
    :ofCountry <http://abc/mondial/10/countries/PL>;
    :percent 0.6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Byelorussian>; 
    :ofCountry <http://abc/mondial/10/countries/PL>;
    :percent 0.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ukrainian>; 
    :ofCountry <http://abc/mondial/10/countries/UA>;
    :percent 73] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/UA>;
    :percent 22] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Jewish>; 
    :ofCountry <http://abc/mondial/10/countries/UA>;
    :percent 1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ukrainian>; 
    :ofCountry <http://abc/mondial/10/countries/R>;
    :percent 3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/R>;
    :percent 81.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Byelorussian>; 
    :ofCountry <http://abc/mondial/10/countries/R>;
    :percent 0.8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Tatar>; 
    :ofCountry <http://abc/mondial/10/countries/R>;
    :percent 3.8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Chuvash>; 
    :ofCountry <http://abc/mondial/10/countries/R>;
    :percent 1.2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Bashkir>; 
    :ofCountry <http://abc/mondial/10/countries/R>;
    :percent 0.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Moldavian>; 
    :ofCountry <http://abc/mondial/10/countries/R>;
    :percent 0.7] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Fleming>; 
    :ofCountry <http://abc/mondial/10/countries/B>;
    :percent 55] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Walloon>; 
    :ofCountry <http://abc/mondial/10/countries/B>;
    :percent 33] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Dutch>; 
    :ofCountry <http://abc/mondial/10/countries/NL>;
    :percent 96] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Serb>; 
    :ofCountry <http://abc/mondial/10/countries/BIH>;
    :percent 40] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/BIH>;
    :percent 38] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Croat>; 
    :ofCountry <http://abc/mondial/10/countries/BIH>;
    :percent 22] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Serb>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 12] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Hungarian>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 0.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Muslim>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 0.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Croat>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 78] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Slovene>; 
    :ofCountry <http://abc/mondial/10/countries/HR>;
    :percent 0.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Macedonian>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 2.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Roma>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 2.6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 0.2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Turk>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 8.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Bulgarian>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 85.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Armenian>; 
    :ofCountry <http://abc/mondial/10/countries/BG>;
    :percent 0.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/German>; 
    :ofCountry <http://abc/mondial/10/countries/RO>;
    :percent 0.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Roma>; 
    :ofCountry <http://abc/mondial/10/countries/RO>;
    :percent 1.6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Hungarian>; 
    :ofCountry <http://abc/mondial/10/countries/RO>;
    :percent 8.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Romanian>; 
    :ofCountry <http://abc/mondial/10/countries/RO>;
    :percent 89.1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Turkish>; 
    :ofCountry <http://abc/mondial/10/countries/TR>;
    :percent 80] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Kurdish>; 
    :ofCountry <http://abc/mondial/10/countries/TR>;
    :percent 20] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ukrainian>; 
    :ofCountry <http://abc/mondial/10/countries/EW>;
    :percent 3.2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/EW>;
    :percent 30.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Byelorussian>; 
    :ofCountry <http://abc/mondial/10/countries/EW>;
    :percent 1.8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Finn>; 
    :ofCountry <http://abc/mondial/10/countries/EW>;
    :percent 1.1] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Estonian>; 
    :ofCountry <http://abc/mondial/10/countries/EW>;
    :percent 61.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Scandinavian>; 
    :ofCountry <http://abc/mondial/10/countries/FARX>;
    :percent 100] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/foreign-bornfirst-generation>; 
    :ofCountry <http://abc/mondial/10/countries/S>;
    :percent 12] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/French>; 
    :ofCountry <http://abc/mondial/10/countries/MC>;
    :percent 47] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Italian>; 
    :ofCountry <http://abc/mondial/10/countries/MC>;
    :percent 16] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Monegasque>; 
    :ofCountry <http://abc/mondial/10/countries/MC>;
    :percent 16] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Norman-French>; 
    :ofCountry <http://abc/mondial/10/countries/GBG>;
    :percent 100] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Celt>; 
    :ofCountry <http://abc/mondial/10/countries/IS>;
    :percent 100] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Norman-French>; 
    :ofCountry <http://abc/mondial/10/countries/GBJ>;
    :percent 100] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ukrainian>; 
    :ofCountry <http://abc/mondial/10/countries/MD>;
    :percent 13.8] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Russian>; 
    :ofCountry <http://abc/mondial/10/countries/MD>;
    :percent 13] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Jewish>; 
    :ofCountry <http://abc/mondial/10/countries/MD>;
    :percent 1.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Bulgarian>; 
    :ofCountry <http://abc/mondial/10/countries/MD>;
    :percent 2] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Gagauz>; 
    :ofCountry <http://abc/mondial/10/countries/MD>;
    :percent 3.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Moldavian-Romanian>; 
    :ofCountry <http://abc/mondial/10/countries/MD>;
    :percent 64.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Norwegian>; 
    :ofCountry <http://abc/mondial/10/countries/SVAX>;
    :percent 55.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/RussianUkrainian>; 
    :ofCountry <http://abc/mondial/10/countries/SVAX>;
    :percent 44.3] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/English>; 
    :ofCountry <http://abc/mondial/10/countries/GB>;
    :percent 81.5] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Irish>; 
    :ofCountry <http://abc/mondial/10/countries/GB>;
    :percent 2.4] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Welsh>; 
    :ofCountry <http://abc/mondial/10/countries/GB>;
    :percent 1.9] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Scottish>; 
    :ofCountry <http://abc/mondial/10/countries/GB>;
    :percent 9.6] .
 [ rdf:type :EthnicProportion ; :onEthnicGroup <http://abc/mondial/10/EthnicGroups/Ulster>; 
    :ofCountry <http://abc/mondial/10/countries/GB>;
    :percent 1.8] .
