ldkit 1.1.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/esm/library/decoder.js +20 -30
- package/esm/library/encoder.js +33 -17
- package/esm/library/engine/mod.js +2 -2
- package/esm/library/engine/query_engine.js +40 -0
- package/esm/library/engine/query_engine_proxy.js +8 -8
- package/esm/library/engine/types.js +1 -0
- package/esm/library/lens/lens.js +414 -25
- package/esm/library/lens/mod.js +1 -1
- package/esm/library/lens/query_builder.js +81 -50
- package/esm/library/lens/search_helper.js +142 -0
- package/esm/library/lens/update_helper.js +157 -0
- package/esm/library/namespace.js +36 -0
- package/esm/library/options.js +50 -0
- package/esm/library/schema/data_types.js +3 -38
- package/esm/library/schema/search.js +1 -0
- package/esm/library/schema/utils.js +31 -6
- package/esm/library/sparql/mod.js +2 -1
- package/esm/library/sparql/sparql_expression_builders.js +18 -0
- package/esm/library/sparql/sparql_query_builders.js +65 -0
- package/esm/library/sparql/sparql_shared_builders.js +1 -0
- package/esm/library/sparql/sparql_tag.js +27 -1
- package/esm/library/sparql/sparql_update_builders.js +70 -0
- package/esm/library/sparql/stringify.js +3 -4
- package/esm/mod.js +4 -4
- package/esm/{library/namespaces → namespaces}/dbo.js +7 -2
- package/esm/{library/namespaces → namespaces}/dc.js +7 -2
- package/esm/{library/namespaces → namespaces}/dcterms.js +7 -2
- package/esm/{library/namespaces → namespaces}/foaf.js +7 -2
- package/esm/{library/namespaces → namespaces}/gr.js +7 -2
- package/esm/namespaces/ldkit.js +11 -0
- package/esm/namespaces/owl.js +91 -0
- package/{script/library → esm}/namespaces/rdf.js +7 -4
- package/{script/library → esm}/namespaces/rdfs.js +7 -4
- package/esm/{library/namespaces → namespaces}/schema.js +7 -2
- package/esm/{library/namespaces → namespaces}/sioc.js +7 -2
- package/{script/library → esm}/namespaces/skos.js +7 -4
- package/{script/library → esm}/namespaces/xsd.js +7 -4
- package/esm/namespaces.js +30 -1
- package/esm/rdf.js +14 -1
- package/esm/sparql.js +13 -0
- package/package.json +2 -2
- package/script/library/decoder.js +25 -38
- package/script/library/encoder.js +38 -24
- package/script/library/engine/mod.js +16 -5
- package/script/library/engine/query_engine.js +40 -0
- package/script/library/engine/query_engine_proxy.js +7 -7
- package/script/library/engine/types.js +2 -0
- package/script/library/lens/lens.js +415 -27
- package/script/library/lens/mod.js +15 -4
- package/script/library/lens/query_builder.js +82 -54
- package/script/library/lens/search_helper.js +146 -0
- package/script/library/lens/update_helper.js +161 -0
- package/script/library/namespace.js +40 -0
- package/script/library/options.js +56 -0
- package/script/library/schema/data_types.js +3 -41
- package/script/library/schema/search.js +2 -0
- package/script/library/schema/utils.js +33 -11
- package/script/library/sparql/mod.js +17 -3
- package/script/library/sparql/sparql_expression_builders.js +22 -0
- package/script/library/sparql/sparql_query_builders.js +65 -0
- package/script/library/sparql/sparql_shared_builders.js +3 -1
- package/script/library/sparql/sparql_tag.js +30 -7
- package/script/library/sparql/sparql_update_builders.js +70 -0
- package/script/library/sparql/stringify.js +4 -8
- package/script/mod.js +20 -11
- package/script/{library/namespaces → namespaces}/dbo.js +8 -2
- package/script/{library/namespaces → namespaces}/dc.js +8 -2
- package/script/{library/namespaces → namespaces}/dcterms.js +8 -2
- package/script/{library/namespaces → namespaces}/foaf.js +8 -2
- package/script/{library/namespaces → namespaces}/gr.js +8 -2
- package/script/namespaces/ldkit.js +14 -0
- package/script/namespaces/owl.js +94 -0
- package/{esm/library → script}/namespaces/rdf.js +10 -2
- package/{esm/library → script}/namespaces/rdfs.js +10 -2
- package/script/{library/namespaces → namespaces}/schema.js +8 -2
- package/script/{library/namespaces → namespaces}/sioc.js +8 -2
- package/{esm/library → script}/namespaces/skos.js +10 -2
- package/{esm/library → script}/namespaces/xsd.js +10 -2
- package/script/namespaces.js +44 -1
- package/script/rdf.js +20 -15
- package/script/sparql.js +13 -0
- package/types/library/decoder.d.ts +4 -3
- package/types/library/encoder.d.ts +5 -3
- package/types/library/engine/mod.d.ts +2 -2
- package/types/library/engine/query_engine.d.ts +50 -9
- package/types/library/engine/query_engine_proxy.d.ts +4 -3
- package/types/library/engine/types.d.ts +23 -0
- package/types/library/lens/lens.d.ts +400 -23
- package/types/library/lens/mod.d.ts +1 -1
- package/types/library/lens/query_builder.d.ts +10 -10
- package/types/library/lens/search_helper.d.ts +21 -0
- package/types/library/lens/types.d.ts +5 -2
- package/types/library/lens/update_helper.d.ts +23 -0
- package/types/library/namespace.d.ts +41 -0
- package/types/library/options.d.ts +72 -0
- package/types/library/rdf.d.ts +8 -15
- package/types/library/schema/data_types.d.ts +44 -37
- package/types/library/schema/interface.d.ts +75 -20
- package/types/library/schema/mod.d.ts +4 -2
- package/types/library/schema/schema.d.ts +23 -16
- package/types/library/schema/search.d.ts +20 -0
- package/types/library/schema/utils.d.ts +3 -3
- package/types/library/sparql/mod.d.ts +2 -1
- package/types/library/sparql/sparql_expression_builders.d.ts +19 -0
- package/types/library/sparql/sparql_query_builders.d.ts +68 -3
- package/types/library/sparql/sparql_shared_builders.d.ts +1 -0
- package/types/library/sparql/sparql_tag.d.ts +29 -1
- package/types/library/sparql/sparql_update_builders.d.ts +68 -0
- package/types/mod.d.ts +5 -6
- package/types/namespaces/dbo.d.ts +10 -0
- package/types/namespaces/dc.d.ts +10 -0
- package/types/namespaces/dcterms.d.ts +10 -0
- package/types/namespaces/foaf.d.ts +10 -0
- package/types/namespaces/gr.d.ts +10 -0
- package/types/namespaces/ldkit.d.ts +10 -0
- package/types/namespaces/owl.d.ts +10 -0
- package/types/namespaces/rdf.d.ts +10 -0
- package/types/namespaces/rdfs.d.ts +10 -0
- package/types/namespaces/schema.d.ts +10 -0
- package/types/namespaces/sioc.d.ts +10 -0
- package/types/namespaces/skos.d.ts +10 -0
- package/types/namespaces/xsd.d.ts +10 -0
- package/types/namespaces.d.ts +30 -1
- package/types/rdf.d.ts +14 -1
- package/types/sparql.d.ts +13 -0
- package/esm/library/global.js +0 -25
- package/esm/library/lens/query_helper.js +0 -102
- package/esm/library/namespaces/ldkit.js +0 -6
- package/esm/library/namespaces/mod.js +0 -13
- package/esm/library/namespaces/namespace.js +0 -11
- package/script/library/global.js +0 -32
- package/script/library/lens/query_helper.js +0 -106
- package/script/library/namespaces/ldkit.js +0 -8
- package/script/library/namespaces/mod.js +0 -32
- package/script/library/namespaces/namespace.js +0 -15
- package/types/library/global.d.ts +0 -5
- package/types/library/lens/query_helper.d.ts +0 -19
- package/types/library/namespaces/dbo.d.ts +0 -3649
- package/types/library/namespaces/dc.d.ts +0 -21
- package/types/library/namespaces/dcterms.d.ts +0 -104
- package/types/library/namespaces/foaf.d.ts +0 -69
- package/types/library/namespaces/gr.d.ts +0 -175
- package/types/library/namespaces/ldkit.d.ts +0 -7
- package/types/library/namespaces/mod.d.ts +0 -13
- package/types/library/namespaces/namespace.d.ts +0 -15
- package/types/library/namespaces/rdf.d.ts +0 -28
- package/types/library/namespaces/rdfs.d.ts +0 -21
- package/types/library/namespaces/schema.d.ts +0 -2697
- package/types/library/namespaces/sioc.d.ts +0 -105
- package/types/library/namespaces/skos.d.ts +0 -38
- package/types/library/namespaces/xsd.d.ts +0 -56
|
@@ -1,3649 +0,0 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
number: "dbo:number";
|
|
3
|
-
symbol: "dbo:symbol";
|
|
4
|
-
tree: "dbo:tree";
|
|
5
|
-
closed: "dbo:closed";
|
|
6
|
-
map: "dbo:map";
|
|
7
|
-
range: "dbo:range";
|
|
8
|
-
format: "dbo:format";
|
|
9
|
-
value: "dbo:value";
|
|
10
|
-
type: "dbo:type";
|
|
11
|
-
prefix: "dbo:prefix";
|
|
12
|
-
length: "dbo:length";
|
|
13
|
-
Name: "dbo:Name";
|
|
14
|
-
date: "dbo:date";
|
|
15
|
-
duration: "dbo:duration";
|
|
16
|
-
language: "dbo:language";
|
|
17
|
-
time: "dbo:time";
|
|
18
|
-
List: "dbo:List";
|
|
19
|
-
description: "dbo:description";
|
|
20
|
-
Academic: "dbo:Academic";
|
|
21
|
-
AcademicConference: "dbo:AcademicConference";
|
|
22
|
-
AcademicJournal: "dbo:AcademicJournal";
|
|
23
|
-
AcademicSubject: "dbo:AcademicSubject";
|
|
24
|
-
Activity: "dbo:Activity";
|
|
25
|
-
Actor: "dbo:Actor";
|
|
26
|
-
AdministrativeRegion: "dbo:AdministrativeRegion";
|
|
27
|
-
AdultActor: "dbo:AdultActor";
|
|
28
|
-
Agent: "dbo:Agent";
|
|
29
|
-
Agglomeration: "dbo:Agglomeration";
|
|
30
|
-
Aircraft: "dbo:Aircraft";
|
|
31
|
-
Airline: "dbo:Airline";
|
|
32
|
-
Airport: "dbo:Airport";
|
|
33
|
-
Album: "dbo:Album";
|
|
34
|
-
Algorithm: "dbo:Algorithm";
|
|
35
|
-
Altitude: "dbo:Altitude";
|
|
36
|
-
AmateurBoxer: "dbo:AmateurBoxer";
|
|
37
|
-
Ambassador: "dbo:Ambassador";
|
|
38
|
-
AmericanFootballCoach: "dbo:AmericanFootballCoach";
|
|
39
|
-
AmericanFootballLeague: "dbo:AmericanFootballLeague";
|
|
40
|
-
AmericanFootballPlayer: "dbo:AmericanFootballPlayer";
|
|
41
|
-
AmericanFootballTeam: "dbo:AmericanFootballTeam";
|
|
42
|
-
AmericanLeader: "dbo:AmericanLeader";
|
|
43
|
-
Amphibian: "dbo:Amphibian";
|
|
44
|
-
AmusementParkAttraction: "dbo:AmusementParkAttraction";
|
|
45
|
-
AnatomicalStructure: "dbo:AnatomicalStructure";
|
|
46
|
-
Animal: "dbo:Animal";
|
|
47
|
-
AnimangaCharacter: "dbo:AnimangaCharacter";
|
|
48
|
-
Anime: "dbo:Anime";
|
|
49
|
-
Annotation: "dbo:Annotation";
|
|
50
|
-
Arachnid: "dbo:Arachnid";
|
|
51
|
-
Archaea: "dbo:Archaea";
|
|
52
|
-
Archbishop: "dbo:Archbishop";
|
|
53
|
-
Archeologist: "dbo:Archeologist";
|
|
54
|
-
ArcherPlayer: "dbo:ArcherPlayer";
|
|
55
|
-
Archipelago: "dbo:Archipelago";
|
|
56
|
-
Architect: "dbo:Architect";
|
|
57
|
-
ArchitecturalStructure: "dbo:ArchitecturalStructure";
|
|
58
|
-
Area: "dbo:Area";
|
|
59
|
-
Arena: "dbo:Arena";
|
|
60
|
-
Aristocrat: "dbo:Aristocrat";
|
|
61
|
-
Arrondissement: "dbo:Arrondissement";
|
|
62
|
-
Artery: "dbo:Artery";
|
|
63
|
-
Article: "dbo:Article";
|
|
64
|
-
ArtificialSatellite: "dbo:ArtificialSatellite";
|
|
65
|
-
Artist: "dbo:Artist";
|
|
66
|
-
ArtistDiscography: "dbo:ArtistDiscography";
|
|
67
|
-
ArtisticGenre: "dbo:ArtisticGenre";
|
|
68
|
-
Artwork: "dbo:Artwork";
|
|
69
|
-
Asteroid: "dbo:Asteroid";
|
|
70
|
-
Astronaut: "dbo:Astronaut";
|
|
71
|
-
Athlete: "dbo:Athlete";
|
|
72
|
-
Athletics: "dbo:Athletics";
|
|
73
|
-
AthleticsPlayer: "dbo:AthleticsPlayer";
|
|
74
|
-
Atoll: "dbo:Atoll";
|
|
75
|
-
Attack: "dbo:Attack";
|
|
76
|
-
AustralianFootballLeague: "dbo:AustralianFootballLeague";
|
|
77
|
-
AustralianFootballTeam: "dbo:AustralianFootballTeam";
|
|
78
|
-
AustralianRulesFootballPlayer: "dbo:AustralianRulesFootballPlayer";
|
|
79
|
-
AutoRacingLeague: "dbo:AutoRacingLeague";
|
|
80
|
-
Automobile: "dbo:Automobile";
|
|
81
|
-
AutomobileEngine: "dbo:AutomobileEngine";
|
|
82
|
-
Award: "dbo:Award";
|
|
83
|
-
BackScene: "dbo:BackScene";
|
|
84
|
-
Bacteria: "dbo:Bacteria";
|
|
85
|
-
BadmintonPlayer: "dbo:BadmintonPlayer";
|
|
86
|
-
Band: "dbo:Band";
|
|
87
|
-
Bank: "dbo:Bank";
|
|
88
|
-
Baronet: "dbo:Baronet";
|
|
89
|
-
BaseballLeague: "dbo:BaseballLeague";
|
|
90
|
-
BaseballPlayer: "dbo:BaseballPlayer";
|
|
91
|
-
BaseballSeason: "dbo:BaseballSeason";
|
|
92
|
-
BaseballTeam: "dbo:BaseballTeam";
|
|
93
|
-
BasketballLeague: "dbo:BasketballLeague";
|
|
94
|
-
BasketballPlayer: "dbo:BasketballPlayer";
|
|
95
|
-
BasketballTeam: "dbo:BasketballTeam";
|
|
96
|
-
Battery: "dbo:Battery";
|
|
97
|
-
Bay: "dbo:Bay";
|
|
98
|
-
Beach: "dbo:Beach";
|
|
99
|
-
BeachVolleyballPlayer: "dbo:BeachVolleyballPlayer";
|
|
100
|
-
BeautyQueen: "dbo:BeautyQueen";
|
|
101
|
-
Beer: "dbo:Beer";
|
|
102
|
-
Beverage: "dbo:Beverage";
|
|
103
|
-
Biathlete: "dbo:Biathlete";
|
|
104
|
-
BiologicalDatabase: "dbo:BiologicalDatabase";
|
|
105
|
-
Biologist: "dbo:Biologist";
|
|
106
|
-
Biomolecule: "dbo:Biomolecule";
|
|
107
|
-
Bird: "dbo:Bird";
|
|
108
|
-
Blazon: "dbo:Blazon";
|
|
109
|
-
BloodVessel: "dbo:BloodVessel";
|
|
110
|
-
BoardGame: "dbo:BoardGame";
|
|
111
|
-
BobsleighAthlete: "dbo:BobsleighAthlete";
|
|
112
|
-
BodyOfWater: "dbo:BodyOfWater";
|
|
113
|
-
Bodybuilder: "dbo:Bodybuilder";
|
|
114
|
-
Bone: "dbo:Bone";
|
|
115
|
-
Book: "dbo:Book";
|
|
116
|
-
BowlingLeague: "dbo:BowlingLeague";
|
|
117
|
-
Boxer: "dbo:Boxer";
|
|
118
|
-
BoxingLeague: "dbo:BoxingLeague";
|
|
119
|
-
Brain: "dbo:Brain";
|
|
120
|
-
Brewery: "dbo:Brewery";
|
|
121
|
-
Bridge: "dbo:Bridge";
|
|
122
|
-
BritishRoyalty: "dbo:BritishRoyalty";
|
|
123
|
-
BroadcastNetwork: "dbo:BroadcastNetwork";
|
|
124
|
-
Broadcaster: "dbo:Broadcaster";
|
|
125
|
-
BrownDwarf: "dbo:BrownDwarf";
|
|
126
|
-
Browser: "dbo:Browser";
|
|
127
|
-
Building: "dbo:Building";
|
|
128
|
-
BullFighter: "dbo:BullFighter";
|
|
129
|
-
BusCompany: "dbo:BusCompany";
|
|
130
|
-
BusinessPerson: "dbo:BusinessPerson";
|
|
131
|
-
Camera: "dbo:Camera";
|
|
132
|
-
CanadianFootballLeague: "dbo:CanadianFootballLeague";
|
|
133
|
-
CanadianFootballPlayer: "dbo:CanadianFootballPlayer";
|
|
134
|
-
CanadianFootballTeam: "dbo:CanadianFootballTeam";
|
|
135
|
-
Canal: "dbo:Canal";
|
|
136
|
-
Canoeist: "dbo:Canoeist";
|
|
137
|
-
Canton: "dbo:Canton";
|
|
138
|
-
Cape: "dbo:Cape";
|
|
139
|
-
Capital: "dbo:Capital";
|
|
140
|
-
CapitalOfRegion: "dbo:CapitalOfRegion";
|
|
141
|
-
CardGame: "dbo:CardGame";
|
|
142
|
-
Cardinal: "dbo:Cardinal";
|
|
143
|
-
CardinalDirection: "dbo:CardinalDirection";
|
|
144
|
-
CareerStation: "dbo:CareerStation";
|
|
145
|
-
Cartoon: "dbo:Cartoon";
|
|
146
|
-
Case: "dbo:Case";
|
|
147
|
-
Casino: "dbo:Casino";
|
|
148
|
-
Castle: "dbo:Castle";
|
|
149
|
-
Cat: "dbo:Cat";
|
|
150
|
-
Caterer: "dbo:Caterer";
|
|
151
|
-
Cave: "dbo:Cave";
|
|
152
|
-
CelestialBody: "dbo:CelestialBody";
|
|
153
|
-
Cemetery: "dbo:Cemetery";
|
|
154
|
-
Chancellor: "dbo:Chancellor";
|
|
155
|
-
ChartsPlacements: "dbo:ChartsPlacements";
|
|
156
|
-
Cheese: "dbo:Cheese";
|
|
157
|
-
Chef: "dbo:Chef";
|
|
158
|
-
ChemicalCompound: "dbo:ChemicalCompound";
|
|
159
|
-
ChemicalElement: "dbo:ChemicalElement";
|
|
160
|
-
ChemicalSubstance: "dbo:ChemicalSubstance";
|
|
161
|
-
ChessPlayer: "dbo:ChessPlayer";
|
|
162
|
-
ChristianBishop: "dbo:ChristianBishop";
|
|
163
|
-
ChristianDoctrine: "dbo:ChristianDoctrine";
|
|
164
|
-
ChristianPatriarch: "dbo:ChristianPatriarch";
|
|
165
|
-
Church: "dbo:Church";
|
|
166
|
-
Cinema: "dbo:Cinema";
|
|
167
|
-
Cipher: "dbo:Cipher";
|
|
168
|
-
City: "dbo:City";
|
|
169
|
-
CityDistrict: "dbo:CityDistrict";
|
|
170
|
-
ClassicalMusicArtist: "dbo:ClassicalMusicArtist";
|
|
171
|
-
ClassicalMusicComposition: "dbo:ClassicalMusicComposition";
|
|
172
|
-
Cleric: "dbo:Cleric";
|
|
173
|
-
ClericalAdministrativeRegion: "dbo:ClericalAdministrativeRegion";
|
|
174
|
-
ClericalOrder: "dbo:ClericalOrder";
|
|
175
|
-
ClubMoss: "dbo:ClubMoss";
|
|
176
|
-
Coach: "dbo:Coach";
|
|
177
|
-
CoalPit: "dbo:CoalPit";
|
|
178
|
-
CollectionOfValuables: "dbo:CollectionOfValuables";
|
|
179
|
-
College: "dbo:College";
|
|
180
|
-
CollegeCoach: "dbo:CollegeCoach";
|
|
181
|
-
Colour: "dbo:Colour";
|
|
182
|
-
CombinationDrug: "dbo:CombinationDrug";
|
|
183
|
-
Comedian: "dbo:Comedian";
|
|
184
|
-
ComedyGroup: "dbo:ComedyGroup";
|
|
185
|
-
Comic: "dbo:Comic";
|
|
186
|
-
ComicStrip: "dbo:ComicStrip";
|
|
187
|
-
ComicsCharacter: "dbo:ComicsCharacter";
|
|
188
|
-
ComicsCreator: "dbo:ComicsCreator";
|
|
189
|
-
Community: "dbo:Community";
|
|
190
|
-
Company: "dbo:Company";
|
|
191
|
-
Competition: "dbo:Competition";
|
|
192
|
-
ConcentrationCamp: "dbo:ConcentrationCamp";
|
|
193
|
-
Congressman: "dbo:Congressman";
|
|
194
|
-
Conifer: "dbo:Conifer";
|
|
195
|
-
Constellation: "dbo:Constellation";
|
|
196
|
-
Contest: "dbo:Contest";
|
|
197
|
-
Continent: "dbo:Continent";
|
|
198
|
-
ControlledDesignationOfOriginWine: "dbo:ControlledDesignationOfOriginWine";
|
|
199
|
-
Convention: "dbo:Convention";
|
|
200
|
-
ConveyorSystem: "dbo:ConveyorSystem";
|
|
201
|
-
Country: "dbo:Country";
|
|
202
|
-
CountrySeat: "dbo:CountrySeat";
|
|
203
|
-
Covid19: "dbo:Covid19";
|
|
204
|
-
Crater: "dbo:Crater";
|
|
205
|
-
CricketGround: "dbo:CricketGround";
|
|
206
|
-
CricketLeague: "dbo:CricketLeague";
|
|
207
|
-
CricketTeam: "dbo:CricketTeam";
|
|
208
|
-
Cricketer: "dbo:Cricketer";
|
|
209
|
-
Criminal: "dbo:Criminal";
|
|
210
|
-
CrossCountrySkier: "dbo:CrossCountrySkier";
|
|
211
|
-
Crustacean: "dbo:Crustacean";
|
|
212
|
-
CultivatedVariety: "dbo:CultivatedVariety";
|
|
213
|
-
Curler: "dbo:Curler";
|
|
214
|
-
CurlingLeague: "dbo:CurlingLeague";
|
|
215
|
-
Currency: "dbo:Currency";
|
|
216
|
-
Cycad: "dbo:Cycad";
|
|
217
|
-
CyclingCompetition: "dbo:CyclingCompetition";
|
|
218
|
-
CyclingLeague: "dbo:CyclingLeague";
|
|
219
|
-
CyclingRace: "dbo:CyclingRace";
|
|
220
|
-
CyclingTeam: "dbo:CyclingTeam";
|
|
221
|
-
Cyclist: "dbo:Cyclist";
|
|
222
|
-
DBpedian: "dbo:DBpedian";
|
|
223
|
-
DTMRacer: "dbo:DTMRacer";
|
|
224
|
-
Dam: "dbo:Dam";
|
|
225
|
-
Dancer: "dbo:Dancer";
|
|
226
|
-
DartsPlayer: "dbo:DartsPlayer";
|
|
227
|
-
Database: "dbo:Database";
|
|
228
|
-
Deanery: "dbo:Deanery";
|
|
229
|
-
Decoration: "dbo:Decoration";
|
|
230
|
-
Deity: "dbo:Deity";
|
|
231
|
-
Demographics: "dbo:Demographics";
|
|
232
|
-
Department: "dbo:Department";
|
|
233
|
-
Depth: "dbo:Depth";
|
|
234
|
-
Deputy: "dbo:Deputy";
|
|
235
|
-
Desert: "dbo:Desert";
|
|
236
|
-
Device: "dbo:Device";
|
|
237
|
-
DigitalCamera: "dbo:DigitalCamera";
|
|
238
|
-
Dike: "dbo:Dike";
|
|
239
|
-
Diocese: "dbo:Diocese";
|
|
240
|
-
Diploma: "dbo:Diploma";
|
|
241
|
-
Disease: "dbo:Disease";
|
|
242
|
-
DisneyCharacter: "dbo:DisneyCharacter";
|
|
243
|
-
District: "dbo:District";
|
|
244
|
-
DistrictWaterBoard: "dbo:DistrictWaterBoard";
|
|
245
|
-
Document: "dbo:Document";
|
|
246
|
-
DocumentType: "dbo:DocumentType";
|
|
247
|
-
Dog: "dbo:Dog";
|
|
248
|
-
Drama: "dbo:Drama";
|
|
249
|
-
Drug: "dbo:Drug";
|
|
250
|
-
Earthquake: "dbo:Earthquake";
|
|
251
|
-
Economist: "dbo:Economist";
|
|
252
|
-
EducationalInstitution: "dbo:EducationalInstitution";
|
|
253
|
-
Egyptologist: "dbo:Egyptologist";
|
|
254
|
-
Election: "dbo:Election";
|
|
255
|
-
ElectionDiagram: "dbo:ElectionDiagram";
|
|
256
|
-
ElectricalSubstation: "dbo:ElectricalSubstation";
|
|
257
|
-
Embryology: "dbo:Embryology";
|
|
258
|
-
Employer: "dbo:Employer";
|
|
259
|
-
EmployersOrganisation: "dbo:EmployersOrganisation";
|
|
260
|
-
Engine: "dbo:Engine";
|
|
261
|
-
Engineer: "dbo:Engineer";
|
|
262
|
-
Entomologist: "dbo:Entomologist";
|
|
263
|
-
Enzyme: "dbo:Enzyme";
|
|
264
|
-
Escalator: "dbo:Escalator";
|
|
265
|
-
EthnicGroup: "dbo:EthnicGroup";
|
|
266
|
-
Eukaryote: "dbo:Eukaryote";
|
|
267
|
-
EurovisionSongContestEntry: "dbo:EurovisionSongContestEntry";
|
|
268
|
-
Event: "dbo:Event";
|
|
269
|
-
Factory: "dbo:Factory";
|
|
270
|
-
Family: "dbo:Family";
|
|
271
|
-
Farmer: "dbo:Farmer";
|
|
272
|
-
Fashion: "dbo:Fashion";
|
|
273
|
-
FashionDesigner: "dbo:FashionDesigner";
|
|
274
|
-
Fencer: "dbo:Fencer";
|
|
275
|
-
Fern: "dbo:Fern";
|
|
276
|
-
FictionalCharacter: "dbo:FictionalCharacter";
|
|
277
|
-
FieldHockeyLeague: "dbo:FieldHockeyLeague";
|
|
278
|
-
FigureSkater: "dbo:FigureSkater";
|
|
279
|
-
File: "dbo:File";
|
|
280
|
-
FileSystem: "dbo:FileSystem";
|
|
281
|
-
Film: "dbo:Film";
|
|
282
|
-
FilmFestival: "dbo:FilmFestival";
|
|
283
|
-
Fish: "dbo:Fish";
|
|
284
|
-
Flag: "dbo:Flag";
|
|
285
|
-
FloweringPlant: "dbo:FloweringPlant";
|
|
286
|
-
Food: "dbo:Food";
|
|
287
|
-
FootballLeagueSeason: "dbo:FootballLeagueSeason";
|
|
288
|
-
FootballMatch: "dbo:FootballMatch";
|
|
289
|
-
Forest: "dbo:Forest";
|
|
290
|
-
FormerMunicipality: "dbo:FormerMunicipality";
|
|
291
|
-
FormulaOneRacer: "dbo:FormulaOneRacer";
|
|
292
|
-
FormulaOneRacing: "dbo:FormulaOneRacing";
|
|
293
|
-
FormulaOneTeam: "dbo:FormulaOneTeam";
|
|
294
|
-
Fort: "dbo:Fort";
|
|
295
|
-
Fungus: "dbo:Fungus";
|
|
296
|
-
GaelicGamesPlayer: "dbo:GaelicGamesPlayer";
|
|
297
|
-
Galaxy: "dbo:Galaxy";
|
|
298
|
-
Game: "dbo:Game";
|
|
299
|
-
Garden: "dbo:Garden";
|
|
300
|
-
GatedCommunity: "dbo:GatedCommunity";
|
|
301
|
-
Gene: "dbo:Gene";
|
|
302
|
-
GeneLocation: "dbo:GeneLocation";
|
|
303
|
-
Genre: "dbo:Genre";
|
|
304
|
-
GeologicalPeriod: "dbo:GeologicalPeriod";
|
|
305
|
-
GeopoliticalOrganisation: "dbo:GeopoliticalOrganisation";
|
|
306
|
-
Ginkgo: "dbo:Ginkgo";
|
|
307
|
-
GivenName: "dbo:GivenName";
|
|
308
|
-
Glacier: "dbo:Glacier";
|
|
309
|
-
Globularswarm: "dbo:Globularswarm";
|
|
310
|
-
Gnetophytes: "dbo:Gnetophytes";
|
|
311
|
-
GolfCourse: "dbo:GolfCourse";
|
|
312
|
-
GolfLeague: "dbo:GolfLeague";
|
|
313
|
-
GolfPlayer: "dbo:GolfPlayer";
|
|
314
|
-
GolfTournament: "dbo:GolfTournament";
|
|
315
|
-
GovernmentAgency: "dbo:GovernmentAgency";
|
|
316
|
-
GovernmentCabinet: "dbo:GovernmentCabinet";
|
|
317
|
-
GovernmentType: "dbo:GovernmentType";
|
|
318
|
-
GovernmentalAdministrativeRegion: "dbo:GovernmentalAdministrativeRegion";
|
|
319
|
-
Governor: "dbo:Governor";
|
|
320
|
-
GrandPrix: "dbo:GrandPrix";
|
|
321
|
-
Grape: "dbo:Grape";
|
|
322
|
-
GraveMonument: "dbo:GraveMonument";
|
|
323
|
-
GreenAlga: "dbo:GreenAlga";
|
|
324
|
-
GridironFootballPlayer: "dbo:GridironFootballPlayer";
|
|
325
|
-
GrossDomesticProduct: "dbo:GrossDomesticProduct";
|
|
326
|
-
GrossDomesticProductPerCapita: "dbo:GrossDomesticProductPerCapita";
|
|
327
|
-
Group: "dbo:Group";
|
|
328
|
-
Guitar: "dbo:Guitar";
|
|
329
|
-
Guitarist: "dbo:Guitarist";
|
|
330
|
-
Gymnast: "dbo:Gymnast";
|
|
331
|
-
HandballLeague: "dbo:HandballLeague";
|
|
332
|
-
HandballPlayer: "dbo:HandballPlayer";
|
|
333
|
-
HandballTeam: "dbo:HandballTeam";
|
|
334
|
-
HighDiver: "dbo:HighDiver";
|
|
335
|
-
Historian: "dbo:Historian";
|
|
336
|
-
HistoricBuilding: "dbo:HistoricBuilding";
|
|
337
|
-
HistoricPlace: "dbo:HistoricPlace";
|
|
338
|
-
HistoricalAreaOfAuthority: "dbo:HistoricalAreaOfAuthority";
|
|
339
|
-
HistoricalCountry: "dbo:HistoricalCountry";
|
|
340
|
-
HistoricalDistrict: "dbo:HistoricalDistrict";
|
|
341
|
-
HistoricalEvent: "dbo:HistoricalEvent";
|
|
342
|
-
HistoricalPeriod: "dbo:HistoricalPeriod";
|
|
343
|
-
HistoricalProvince: "dbo:HistoricalProvince";
|
|
344
|
-
HistoricalRegion: "dbo:HistoricalRegion";
|
|
345
|
-
HistoricalSettlement: "dbo:HistoricalSettlement";
|
|
346
|
-
HockeyClub: "dbo:HockeyClub";
|
|
347
|
-
HockeyTeam: "dbo:HockeyTeam";
|
|
348
|
-
Holiday: "dbo:Holiday";
|
|
349
|
-
HollywoodCartoon: "dbo:HollywoodCartoon";
|
|
350
|
-
Hormone: "dbo:Hormone";
|
|
351
|
-
Horse: "dbo:Horse";
|
|
352
|
-
HorseRace: "dbo:HorseRace";
|
|
353
|
-
HorseRider: "dbo:HorseRider";
|
|
354
|
-
HorseTrainer: "dbo:HorseTrainer";
|
|
355
|
-
Hospital: "dbo:Hospital";
|
|
356
|
-
HotSpring: "dbo:HotSpring";
|
|
357
|
-
Hotel: "dbo:Hotel";
|
|
358
|
-
HumanGene: "dbo:HumanGene";
|
|
359
|
-
HumanGeneLocation: "dbo:HumanGeneLocation";
|
|
360
|
-
Humorist: "dbo:Humorist";
|
|
361
|
-
IceHockeyLeague: "dbo:IceHockeyLeague";
|
|
362
|
-
IceHockeyPlayer: "dbo:IceHockeyPlayer";
|
|
363
|
-
Identifier: "dbo:Identifier";
|
|
364
|
-
Ideology: "dbo:Ideology";
|
|
365
|
-
Image: "dbo:Image";
|
|
366
|
-
InformationAppliance: "dbo:InformationAppliance";
|
|
367
|
-
Infrastructure: "dbo:Infrastructure";
|
|
368
|
-
Infrastucture: "dbo:Infrastucture";
|
|
369
|
-
InlineHockeyLeague: "dbo:InlineHockeyLeague";
|
|
370
|
-
Insect: "dbo:Insect";
|
|
371
|
-
Instrument: "dbo:Instrument";
|
|
372
|
-
Instrumentalist: "dbo:Instrumentalist";
|
|
373
|
-
Intercommunality: "dbo:Intercommunality";
|
|
374
|
-
InternationalFootballLeagueEvent: "dbo:InternationalFootballLeagueEvent";
|
|
375
|
-
InternationalOrganisation: "dbo:InternationalOrganisation";
|
|
376
|
-
Island: "dbo:Island";
|
|
377
|
-
JewishLeader: "dbo:JewishLeader";
|
|
378
|
-
Jockey: "dbo:Jockey";
|
|
379
|
-
Journalist: "dbo:Journalist";
|
|
380
|
-
Judge: "dbo:Judge";
|
|
381
|
-
LacrosseLeague: "dbo:LacrosseLeague";
|
|
382
|
-
LacrossePlayer: "dbo:LacrossePlayer";
|
|
383
|
-
Lake: "dbo:Lake";
|
|
384
|
-
Language: "dbo:Language";
|
|
385
|
-
LatterDaySaint: "dbo:LatterDaySaint";
|
|
386
|
-
LaunchPad: "dbo:LaunchPad";
|
|
387
|
-
Law: "dbo:Law";
|
|
388
|
-
LawFirm: "dbo:LawFirm";
|
|
389
|
-
Lawyer: "dbo:Lawyer";
|
|
390
|
-
LegalCase: "dbo:LegalCase";
|
|
391
|
-
Legislature: "dbo:Legislature";
|
|
392
|
-
Letter: "dbo:Letter";
|
|
393
|
-
Library: "dbo:Library";
|
|
394
|
-
Lieutenant: "dbo:Lieutenant";
|
|
395
|
-
LifeCycleEvent: "dbo:LifeCycleEvent";
|
|
396
|
-
Ligament: "dbo:Ligament";
|
|
397
|
-
LightNovel: "dbo:LightNovel";
|
|
398
|
-
Lighthouse: "dbo:Lighthouse";
|
|
399
|
-
LineOfFashion: "dbo:LineOfFashion";
|
|
400
|
-
Linguist: "dbo:Linguist";
|
|
401
|
-
Lipid: "dbo:Lipid";
|
|
402
|
-
LiteraryGenre: "dbo:LiteraryGenre";
|
|
403
|
-
Locality: "dbo:Locality";
|
|
404
|
-
Lock: "dbo:Lock";
|
|
405
|
-
Locomotive: "dbo:Locomotive";
|
|
406
|
-
LunarCrater: "dbo:LunarCrater";
|
|
407
|
-
Lymph: "dbo:Lymph";
|
|
408
|
-
Magazine: "dbo:Magazine";
|
|
409
|
-
Mammal: "dbo:Mammal";
|
|
410
|
-
Man: "dbo:Man";
|
|
411
|
-
Manga: "dbo:Manga";
|
|
412
|
-
Manhua: "dbo:Manhua";
|
|
413
|
-
Manhwa: "dbo:Manhwa";
|
|
414
|
-
Manor: "dbo:Manor";
|
|
415
|
-
MartialArtist: "dbo:MartialArtist";
|
|
416
|
-
MathematicalConcept: "dbo:MathematicalConcept";
|
|
417
|
-
Mayor: "dbo:Mayor";
|
|
418
|
-
MeanOfTransportation: "dbo:MeanOfTransportation";
|
|
419
|
-
Media: "dbo:Media";
|
|
420
|
-
MedicalSpecialty: "dbo:MedicalSpecialty";
|
|
421
|
-
Medician: "dbo:Medician";
|
|
422
|
-
Medicine: "dbo:Medicine";
|
|
423
|
-
Meeting: "dbo:Meeting";
|
|
424
|
-
MemberOfParliament: "dbo:MemberOfParliament";
|
|
425
|
-
MemberResistanceMovement: "dbo:MemberResistanceMovement";
|
|
426
|
-
Memorial: "dbo:Memorial";
|
|
427
|
-
MetroStation: "dbo:MetroStation";
|
|
428
|
-
MicroRegion: "dbo:MicroRegion";
|
|
429
|
-
MilitaryAircraft: "dbo:MilitaryAircraft";
|
|
430
|
-
MilitaryConflict: "dbo:MilitaryConflict";
|
|
431
|
-
MilitaryPerson: "dbo:MilitaryPerson";
|
|
432
|
-
MilitaryService: "dbo:MilitaryService";
|
|
433
|
-
MilitaryStructure: "dbo:MilitaryStructure";
|
|
434
|
-
MilitaryUnit: "dbo:MilitaryUnit";
|
|
435
|
-
MilitaryVehicle: "dbo:MilitaryVehicle";
|
|
436
|
-
Mill: "dbo:Mill";
|
|
437
|
-
Mine: "dbo:Mine";
|
|
438
|
-
Mineral: "dbo:Mineral";
|
|
439
|
-
Minister: "dbo:Minister";
|
|
440
|
-
MixedMartialArtsEvent: "dbo:MixedMartialArtsEvent";
|
|
441
|
-
MixedMartialArtsLeague: "dbo:MixedMartialArtsLeague";
|
|
442
|
-
MobilePhone: "dbo:MobilePhone";
|
|
443
|
-
Model: "dbo:Model";
|
|
444
|
-
Mollusca: "dbo:Mollusca";
|
|
445
|
-
Monarch: "dbo:Monarch";
|
|
446
|
-
Monastery: "dbo:Monastery";
|
|
447
|
-
MonoclonalAntibody: "dbo:MonoclonalAntibody";
|
|
448
|
-
Monument: "dbo:Monument";
|
|
449
|
-
Mosque: "dbo:Mosque";
|
|
450
|
-
Moss: "dbo:Moss";
|
|
451
|
-
MotocycleRacer: "dbo:MotocycleRacer";
|
|
452
|
-
MotorRace: "dbo:MotorRace";
|
|
453
|
-
Motorcycle: "dbo:Motorcycle";
|
|
454
|
-
MotorcycleRacingLeague: "dbo:MotorcycleRacingLeague";
|
|
455
|
-
MotorcycleRider: "dbo:MotorcycleRider";
|
|
456
|
-
MotorsportRacer: "dbo:MotorsportRacer";
|
|
457
|
-
MotorsportSeason: "dbo:MotorsportSeason";
|
|
458
|
-
Mountain: "dbo:Mountain";
|
|
459
|
-
MountainPass: "dbo:MountainPass";
|
|
460
|
-
MountainRange: "dbo:MountainRange";
|
|
461
|
-
MouseGene: "dbo:MouseGene";
|
|
462
|
-
MouseGeneLocation: "dbo:MouseGeneLocation";
|
|
463
|
-
MovieDirector: "dbo:MovieDirector";
|
|
464
|
-
MovieGenre: "dbo:MovieGenre";
|
|
465
|
-
MovingImage: "dbo:MovingImage";
|
|
466
|
-
MovingWalkway: "dbo:MovingWalkway";
|
|
467
|
-
MultiVolumePublication: "dbo:MultiVolumePublication";
|
|
468
|
-
Municipality: "dbo:Municipality";
|
|
469
|
-
Murderer: "dbo:Murderer";
|
|
470
|
-
Muscle: "dbo:Muscle";
|
|
471
|
-
Museum: "dbo:Museum";
|
|
472
|
-
MusicComposer: "dbo:MusicComposer";
|
|
473
|
-
MusicDirector: "dbo:MusicDirector";
|
|
474
|
-
MusicFestival: "dbo:MusicFestival";
|
|
475
|
-
MusicGenre: "dbo:MusicGenre";
|
|
476
|
-
Musical: "dbo:Musical";
|
|
477
|
-
MusicalArtist: "dbo:MusicalArtist";
|
|
478
|
-
MusicalWork: "dbo:MusicalWork";
|
|
479
|
-
MythologicalFigure: "dbo:MythologicalFigure";
|
|
480
|
-
NCAATeamSeason: "dbo:NCAATeamSeason";
|
|
481
|
-
NarutoCharacter: "dbo:NarutoCharacter";
|
|
482
|
-
NascarDriver: "dbo:NascarDriver";
|
|
483
|
-
NationalAnthem: "dbo:NationalAnthem";
|
|
484
|
-
NationalCollegiateAthleticAssociationAthlete: "dbo:NationalCollegiateAthleticAssociationAthlete";
|
|
485
|
-
NationalFootballLeagueEvent: "dbo:NationalFootballLeagueEvent";
|
|
486
|
-
NationalFootballLeagueSeason: "dbo:NationalFootballLeagueSeason";
|
|
487
|
-
NationalSoccerClub: "dbo:NationalSoccerClub";
|
|
488
|
-
NaturalEvent: "dbo:NaturalEvent";
|
|
489
|
-
NaturalPlace: "dbo:NaturalPlace";
|
|
490
|
-
NaturalRegion: "dbo:NaturalRegion";
|
|
491
|
-
Nebula: "dbo:Nebula";
|
|
492
|
-
Nerve: "dbo:Nerve";
|
|
493
|
-
NetballPlayer: "dbo:NetballPlayer";
|
|
494
|
-
Newspaper: "dbo:Newspaper";
|
|
495
|
-
NobelPrize: "dbo:NobelPrize";
|
|
496
|
-
Noble: "dbo:Noble";
|
|
497
|
-
NobleFamily: "dbo:NobleFamily";
|
|
498
|
-
NordicCombined: "dbo:NordicCombined";
|
|
499
|
-
Novel: "dbo:Novel";
|
|
500
|
-
NuclearPowerStation: "dbo:NuclearPowerStation";
|
|
501
|
-
Ocean: "dbo:Ocean";
|
|
502
|
-
OfficeHolder: "dbo:OfficeHolder";
|
|
503
|
-
OldTerritory: "dbo:OldTerritory";
|
|
504
|
-
OlympicEvent: "dbo:OlympicEvent";
|
|
505
|
-
OlympicResult: "dbo:OlympicResult";
|
|
506
|
-
Olympics: "dbo:Olympics";
|
|
507
|
-
Openswarm: "dbo:Openswarm";
|
|
508
|
-
Opera: "dbo:Opera";
|
|
509
|
-
Organ: "dbo:Organ";
|
|
510
|
-
Organisation: "dbo:Organisation";
|
|
511
|
-
OrganisationMember: "dbo:OrganisationMember";
|
|
512
|
-
Outbreak: "dbo:Outbreak";
|
|
513
|
-
OverseasDepartment: "dbo:OverseasDepartment";
|
|
514
|
-
PaintballLeague: "dbo:PaintballLeague";
|
|
515
|
-
Painter: "dbo:Painter";
|
|
516
|
-
Painting: "dbo:Painting";
|
|
517
|
-
Pandemic: "dbo:Pandemic";
|
|
518
|
-
Parish: "dbo:Parish";
|
|
519
|
-
Park: "dbo:Park";
|
|
520
|
-
Parliament: "dbo:Parliament";
|
|
521
|
-
PenaltyShootOut: "dbo:PenaltyShootOut";
|
|
522
|
-
PeriodOfArtisticStyle: "dbo:PeriodOfArtisticStyle";
|
|
523
|
-
PeriodicalLiterature: "dbo:PeriodicalLiterature";
|
|
524
|
-
Person: "dbo:Person";
|
|
525
|
-
PersonFunction: "dbo:PersonFunction";
|
|
526
|
-
PersonalEvent: "dbo:PersonalEvent";
|
|
527
|
-
Pharaoh: "dbo:Pharaoh";
|
|
528
|
-
Philosopher: "dbo:Philosopher";
|
|
529
|
-
PhilosophicalConcept: "dbo:PhilosophicalConcept";
|
|
530
|
-
Photographer: "dbo:Photographer";
|
|
531
|
-
Pilot: "dbo:Pilot";
|
|
532
|
-
Place: "dbo:Place";
|
|
533
|
-
Planet: "dbo:Planet";
|
|
534
|
-
Plant: "dbo:Plant";
|
|
535
|
-
Play: "dbo:Play";
|
|
536
|
-
PlayWright: "dbo:PlayWright";
|
|
537
|
-
PlayboyPlaymate: "dbo:PlayboyPlaymate";
|
|
538
|
-
Poem: "dbo:Poem";
|
|
539
|
-
Poet: "dbo:Poet";
|
|
540
|
-
PokerPlayer: "dbo:PokerPlayer";
|
|
541
|
-
PoliceOfficer: "dbo:PoliceOfficer";
|
|
542
|
-
PoliticalConcept: "dbo:PoliticalConcept";
|
|
543
|
-
PoliticalFunction: "dbo:PoliticalFunction";
|
|
544
|
-
PoliticalParty: "dbo:PoliticalParty";
|
|
545
|
-
Politician: "dbo:Politician";
|
|
546
|
-
PoliticianSpouse: "dbo:PoliticianSpouse";
|
|
547
|
-
PoloLeague: "dbo:PoloLeague";
|
|
548
|
-
Polysaccharide: "dbo:Polysaccharide";
|
|
549
|
-
Pope: "dbo:Pope";
|
|
550
|
-
PopulatedPlace: "dbo:PopulatedPlace";
|
|
551
|
-
Population: "dbo:Population";
|
|
552
|
-
Port: "dbo:Port";
|
|
553
|
-
PowerStation: "dbo:PowerStation";
|
|
554
|
-
Prefecture: "dbo:Prefecture";
|
|
555
|
-
PrehistoricalPeriod: "dbo:PrehistoricalPeriod";
|
|
556
|
-
Presenter: "dbo:Presenter";
|
|
557
|
-
President: "dbo:President";
|
|
558
|
-
Pretender: "dbo:Pretender";
|
|
559
|
-
Priest: "dbo:Priest";
|
|
560
|
-
PrimeMinister: "dbo:PrimeMinister";
|
|
561
|
-
Prison: "dbo:Prison";
|
|
562
|
-
Producer: "dbo:Producer";
|
|
563
|
-
Profession: "dbo:Profession";
|
|
564
|
-
Professor: "dbo:Professor";
|
|
565
|
-
ProgrammingLanguage: "dbo:ProgrammingLanguage";
|
|
566
|
-
Project: "dbo:Project";
|
|
567
|
-
ProtectedArea: "dbo:ProtectedArea";
|
|
568
|
-
Protein: "dbo:Protein";
|
|
569
|
-
Protocol: "dbo:Protocol";
|
|
570
|
-
ProtohistoricalPeriod: "dbo:ProtohistoricalPeriod";
|
|
571
|
-
Province: "dbo:Province";
|
|
572
|
-
Psychologist: "dbo:Psychologist";
|
|
573
|
-
PublicService: "dbo:PublicService";
|
|
574
|
-
PublicTransitSystem: "dbo:PublicTransitSystem";
|
|
575
|
-
Publisher: "dbo:Publisher";
|
|
576
|
-
Pyramid: "dbo:Pyramid";
|
|
577
|
-
Quote: "dbo:Quote";
|
|
578
|
-
Race: "dbo:Race";
|
|
579
|
-
RaceTrack: "dbo:RaceTrack";
|
|
580
|
-
Racecourse: "dbo:Racecourse";
|
|
581
|
-
RacingDriver: "dbo:RacingDriver";
|
|
582
|
-
RadioControlledRacingLeague: "dbo:RadioControlledRacingLeague";
|
|
583
|
-
RadioHost: "dbo:RadioHost";
|
|
584
|
-
RadioProgram: "dbo:RadioProgram";
|
|
585
|
-
RadioStation: "dbo:RadioStation";
|
|
586
|
-
RailwayLine: "dbo:RailwayLine";
|
|
587
|
-
RailwayStation: "dbo:RailwayStation";
|
|
588
|
-
RailwayTunnel: "dbo:RailwayTunnel";
|
|
589
|
-
RallyDriver: "dbo:RallyDriver";
|
|
590
|
-
Rebbe: "dbo:Rebbe";
|
|
591
|
-
Rebellion: "dbo:Rebellion";
|
|
592
|
-
RecordLabel: "dbo:RecordLabel";
|
|
593
|
-
RecordOffice: "dbo:RecordOffice";
|
|
594
|
-
Referee: "dbo:Referee";
|
|
595
|
-
Reference: "dbo:Reference";
|
|
596
|
-
Regency: "dbo:Regency";
|
|
597
|
-
Region: "dbo:Region";
|
|
598
|
-
Reign: "dbo:Reign";
|
|
599
|
-
Relationship: "dbo:Relationship";
|
|
600
|
-
Religious: "dbo:Religious";
|
|
601
|
-
ReligiousBuilding: "dbo:ReligiousBuilding";
|
|
602
|
-
ReligiousOrganisation: "dbo:ReligiousOrganisation";
|
|
603
|
-
Reptile: "dbo:Reptile";
|
|
604
|
-
ResearchProject: "dbo:ResearchProject";
|
|
605
|
-
RestArea: "dbo:RestArea";
|
|
606
|
-
Restaurant: "dbo:Restaurant";
|
|
607
|
-
Resume: "dbo:Resume";
|
|
608
|
-
River: "dbo:River";
|
|
609
|
-
Road: "dbo:Road";
|
|
610
|
-
RoadJunction: "dbo:RoadJunction";
|
|
611
|
-
RoadTunnel: "dbo:RoadTunnel";
|
|
612
|
-
Robot: "dbo:Robot";
|
|
613
|
-
Rocket: "dbo:Rocket";
|
|
614
|
-
RocketEngine: "dbo:RocketEngine";
|
|
615
|
-
RollerCoaster: "dbo:RollerCoaster";
|
|
616
|
-
RomanEmperor: "dbo:RomanEmperor";
|
|
617
|
-
RouteOfTransportation: "dbo:RouteOfTransportation";
|
|
618
|
-
RouteStop: "dbo:RouteStop";
|
|
619
|
-
Rower: "dbo:Rower";
|
|
620
|
-
Royalty: "dbo:Royalty";
|
|
621
|
-
RugbyClub: "dbo:RugbyClub";
|
|
622
|
-
RugbyLeague: "dbo:RugbyLeague";
|
|
623
|
-
RugbyPlayer: "dbo:RugbyPlayer";
|
|
624
|
-
Sailor: "dbo:Sailor";
|
|
625
|
-
Saint: "dbo:Saint";
|
|
626
|
-
Sales: "dbo:Sales";
|
|
627
|
-
SambaSchool: "dbo:SambaSchool";
|
|
628
|
-
Satellite: "dbo:Satellite";
|
|
629
|
-
School: "dbo:School";
|
|
630
|
-
ScientificConcept: "dbo:ScientificConcept";
|
|
631
|
-
Scientist: "dbo:Scientist";
|
|
632
|
-
ScreenWriter: "dbo:ScreenWriter";
|
|
633
|
-
Sculptor: "dbo:Sculptor";
|
|
634
|
-
Sculpture: "dbo:Sculpture";
|
|
635
|
-
Sea: "dbo:Sea";
|
|
636
|
-
Senator: "dbo:Senator";
|
|
637
|
-
SerialKiller: "dbo:SerialKiller";
|
|
638
|
-
Settlement: "dbo:Settlement";
|
|
639
|
-
Ship: "dbo:Ship";
|
|
640
|
-
ShoppingMall: "dbo:ShoppingMall";
|
|
641
|
-
Shrine: "dbo:Shrine";
|
|
642
|
-
Singer: "dbo:Singer";
|
|
643
|
-
Single: "dbo:Single";
|
|
644
|
-
SiteOfSpecialScientificInterest: "dbo:SiteOfSpecialScientificInterest";
|
|
645
|
-
Skater: "dbo:Skater";
|
|
646
|
-
SkiArea: "dbo:SkiArea";
|
|
647
|
-
SkiResort: "dbo:SkiResort";
|
|
648
|
-
Ski_jumper: "dbo:Ski_jumper";
|
|
649
|
-
Skier: "dbo:Skier";
|
|
650
|
-
Skyscraper: "dbo:Skyscraper";
|
|
651
|
-
SnookerChamp: "dbo:SnookerChamp";
|
|
652
|
-
SnookerPlayer: "dbo:SnookerPlayer";
|
|
653
|
-
SnookerWorldRanking: "dbo:SnookerWorldRanking";
|
|
654
|
-
SoapCharacter: "dbo:SoapCharacter";
|
|
655
|
-
SoccerClub: "dbo:SoccerClub";
|
|
656
|
-
SoccerClubSeason: "dbo:SoccerClubSeason";
|
|
657
|
-
SoccerLeague: "dbo:SoccerLeague";
|
|
658
|
-
SoccerLeagueSeason: "dbo:SoccerLeagueSeason";
|
|
659
|
-
SoccerManager: "dbo:SoccerManager";
|
|
660
|
-
SoccerPlayer: "dbo:SoccerPlayer";
|
|
661
|
-
SoccerTournament: "dbo:SoccerTournament";
|
|
662
|
-
SocietalEvent: "dbo:SocietalEvent";
|
|
663
|
-
SoftballLeague: "dbo:SoftballLeague";
|
|
664
|
-
Software: "dbo:Software";
|
|
665
|
-
SolarEclipse: "dbo:SolarEclipse";
|
|
666
|
-
Song: "dbo:Song";
|
|
667
|
-
SongWriter: "dbo:SongWriter";
|
|
668
|
-
Sound: "dbo:Sound";
|
|
669
|
-
SpaceMission: "dbo:SpaceMission";
|
|
670
|
-
SpaceShuttle: "dbo:SpaceShuttle";
|
|
671
|
-
SpaceStation: "dbo:SpaceStation";
|
|
672
|
-
Spacecraft: "dbo:Spacecraft";
|
|
673
|
-
Species: "dbo:Species";
|
|
674
|
-
SpeedSkater: "dbo:SpeedSkater";
|
|
675
|
-
SpeedwayLeague: "dbo:SpeedwayLeague";
|
|
676
|
-
SpeedwayRider: "dbo:SpeedwayRider";
|
|
677
|
-
SpeedwayTeam: "dbo:SpeedwayTeam";
|
|
678
|
-
Sport: "dbo:Sport";
|
|
679
|
-
SportCompetitionResult: "dbo:SportCompetitionResult";
|
|
680
|
-
SportFacility: "dbo:SportFacility";
|
|
681
|
-
SportsClub: "dbo:SportsClub";
|
|
682
|
-
SportsEvent: "dbo:SportsEvent";
|
|
683
|
-
SportsLeague: "dbo:SportsLeague";
|
|
684
|
-
SportsManager: "dbo:SportsManager";
|
|
685
|
-
SportsSeason: "dbo:SportsSeason";
|
|
686
|
-
SportsTeam: "dbo:SportsTeam";
|
|
687
|
-
SportsTeamMember: "dbo:SportsTeamMember";
|
|
688
|
-
SportsTeamSeason: "dbo:SportsTeamSeason";
|
|
689
|
-
Spreadsheet: "dbo:Spreadsheet";
|
|
690
|
-
Spy: "dbo:Spy";
|
|
691
|
-
Square: "dbo:Square";
|
|
692
|
-
SquashPlayer: "dbo:SquashPlayer";
|
|
693
|
-
Stadium: "dbo:Stadium";
|
|
694
|
-
Standard: "dbo:Standard";
|
|
695
|
-
Star: "dbo:Star";
|
|
696
|
-
StarCluster: "dbo:StarCluster";
|
|
697
|
-
State: "dbo:State";
|
|
698
|
-
StatedResolution: "dbo:StatedResolution";
|
|
699
|
-
Station: "dbo:Station";
|
|
700
|
-
Statistic: "dbo:Statistic";
|
|
701
|
-
StillImage: "dbo:StillImage";
|
|
702
|
-
StormSurge: "dbo:StormSurge";
|
|
703
|
-
Stream: "dbo:Stream";
|
|
704
|
-
Street: "dbo:Street";
|
|
705
|
-
SubMunicipality: "dbo:SubMunicipality";
|
|
706
|
-
SumoWrestler: "dbo:SumoWrestler";
|
|
707
|
-
SupremeCourtOfTheUnitedStatesCase: "dbo:SupremeCourtOfTheUnitedStatesCase";
|
|
708
|
-
Surfer: "dbo:Surfer";
|
|
709
|
-
Surname: "dbo:Surname";
|
|
710
|
-
Swarm: "dbo:Swarm";
|
|
711
|
-
Swimmer: "dbo:Swimmer";
|
|
712
|
-
Synagogue: "dbo:Synagogue";
|
|
713
|
-
SystemOfLaw: "dbo:SystemOfLaw";
|
|
714
|
-
TableTennisPlayer: "dbo:TableTennisPlayer";
|
|
715
|
-
Tank: "dbo:Tank";
|
|
716
|
-
Tax: "dbo:Tax";
|
|
717
|
-
Taxon: "dbo:Taxon";
|
|
718
|
-
TeamMember: "dbo:TeamMember";
|
|
719
|
-
TeamSport: "dbo:TeamSport";
|
|
720
|
-
TelevisionDirector: "dbo:TelevisionDirector";
|
|
721
|
-
TelevisionEpisode: "dbo:TelevisionEpisode";
|
|
722
|
-
TelevisionHost: "dbo:TelevisionHost";
|
|
723
|
-
TelevisionSeason: "dbo:TelevisionSeason";
|
|
724
|
-
TelevisionShow: "dbo:TelevisionShow";
|
|
725
|
-
TelevisionStation: "dbo:TelevisionStation";
|
|
726
|
-
Temple: "dbo:Temple";
|
|
727
|
-
TennisLeague: "dbo:TennisLeague";
|
|
728
|
-
TennisPlayer: "dbo:TennisPlayer";
|
|
729
|
-
TennisTournament: "dbo:TennisTournament";
|
|
730
|
-
Tenure: "dbo:Tenure";
|
|
731
|
-
TermOfOffice: "dbo:TermOfOffice";
|
|
732
|
-
Territory: "dbo:Territory";
|
|
733
|
-
Theatre: "dbo:Theatre";
|
|
734
|
-
TheatreDirector: "dbo:TheatreDirector";
|
|
735
|
-
TheologicalConcept: "dbo:TheologicalConcept";
|
|
736
|
-
TimePeriod: "dbo:TimePeriod";
|
|
737
|
-
TopLevelDomain: "dbo:TopLevelDomain";
|
|
738
|
-
TopicalConcept: "dbo:TopicalConcept";
|
|
739
|
-
Tournament: "dbo:Tournament";
|
|
740
|
-
Tower: "dbo:Tower";
|
|
741
|
-
Town: "dbo:Town";
|
|
742
|
-
TrackList: "dbo:TrackList";
|
|
743
|
-
TradeUnion: "dbo:TradeUnion";
|
|
744
|
-
Train: "dbo:Train";
|
|
745
|
-
TrainCarriage: "dbo:TrainCarriage";
|
|
746
|
-
Tram: "dbo:Tram";
|
|
747
|
-
TramStation: "dbo:TramStation";
|
|
748
|
-
Treadmill: "dbo:Treadmill";
|
|
749
|
-
Treaty: "dbo:Treaty";
|
|
750
|
-
Tunnel: "dbo:Tunnel";
|
|
751
|
-
Type: "dbo:Type";
|
|
752
|
-
UndergroundJournal: "dbo:UndergroundJournal";
|
|
753
|
-
UnitOfWork: "dbo:UnitOfWork";
|
|
754
|
-
University: "dbo:University";
|
|
755
|
-
Unknown: "dbo:Unknown";
|
|
756
|
-
VaccinationStatistics: "dbo:VaccinationStatistics";
|
|
757
|
-
Vaccine: "dbo:Vaccine";
|
|
758
|
-
Valley: "dbo:Valley";
|
|
759
|
-
Vein: "dbo:Vein";
|
|
760
|
-
Venue: "dbo:Venue";
|
|
761
|
-
Vicar: "dbo:Vicar";
|
|
762
|
-
VicePresident: "dbo:VicePresident";
|
|
763
|
-
VicePrimeMinister: "dbo:VicePrimeMinister";
|
|
764
|
-
VideoGame: "dbo:VideoGame";
|
|
765
|
-
VideogamesLeague: "dbo:VideogamesLeague";
|
|
766
|
-
Village: "dbo:Village";
|
|
767
|
-
Vodka: "dbo:Vodka";
|
|
768
|
-
VoiceActor: "dbo:VoiceActor";
|
|
769
|
-
Volcano: "dbo:Volcano";
|
|
770
|
-
VolleyballCoach: "dbo:VolleyballCoach";
|
|
771
|
-
VolleyballLeague: "dbo:VolleyballLeague";
|
|
772
|
-
VolleyballPlayer: "dbo:VolleyballPlayer";
|
|
773
|
-
WaterPoloPlayer: "dbo:WaterPoloPlayer";
|
|
774
|
-
WaterRide: "dbo:WaterRide";
|
|
775
|
-
WaterTower: "dbo:WaterTower";
|
|
776
|
-
Watermill: "dbo:Watermill";
|
|
777
|
-
WaterwayTunnel: "dbo:WaterwayTunnel";
|
|
778
|
-
Weapon: "dbo:Weapon";
|
|
779
|
-
Website: "dbo:Website";
|
|
780
|
-
WikimediaTemplate: "dbo:WikimediaTemplate";
|
|
781
|
-
WindMotor: "dbo:WindMotor";
|
|
782
|
-
Windmill: "dbo:Windmill";
|
|
783
|
-
Wine: "dbo:Wine";
|
|
784
|
-
WineRegion: "dbo:WineRegion";
|
|
785
|
-
Winery: "dbo:Winery";
|
|
786
|
-
WinterSportPlayer: "dbo:WinterSportPlayer";
|
|
787
|
-
Woman: "dbo:Woman";
|
|
788
|
-
WomensTennisAssociationTournament: "dbo:WomensTennisAssociationTournament";
|
|
789
|
-
Work: "dbo:Work";
|
|
790
|
-
WorldHeritageSite: "dbo:WorldHeritageSite";
|
|
791
|
-
Wrestler: "dbo:Wrestler";
|
|
792
|
-
WrestlingEvent: "dbo:WrestlingEvent";
|
|
793
|
-
Writer: "dbo:Writer";
|
|
794
|
-
WrittenWork: "dbo:WrittenWork";
|
|
795
|
-
Year: "dbo:Year";
|
|
796
|
-
YearInSpaceflight: "dbo:YearInSpaceflight";
|
|
797
|
-
Youtuber: "dbo:Youtuber";
|
|
798
|
-
Zoo: "dbo:Zoo";
|
|
799
|
-
aSide: "dbo:aSide";
|
|
800
|
-
abbeychurchBlessing: "dbo:abbeychurchBlessing";
|
|
801
|
-
abbeychurchBlessingCharge: "dbo:abbeychurchBlessingCharge";
|
|
802
|
-
abbreviation: "dbo:abbreviation";
|
|
803
|
-
ableToGrind: "dbo:ableToGrind";
|
|
804
|
-
absoluteMagnitude: "dbo:absoluteMagnitude";
|
|
805
|
-
abstentions: "dbo:abstentions";
|
|
806
|
-
abstract: "dbo:abstract";
|
|
807
|
-
academicAdvisor: "dbo:academicAdvisor";
|
|
808
|
-
academicDiscipline: "dbo:academicDiscipline";
|
|
809
|
-
academyAward: "dbo:academyAward";
|
|
810
|
-
acceleration: "dbo:acceleration";
|
|
811
|
-
access: "dbo:access";
|
|
812
|
-
accessDate: "dbo:accessDate";
|
|
813
|
-
achievement: "dbo:achievement";
|
|
814
|
-
acquirementDate: "dbo:acquirementDate";
|
|
815
|
-
actScore: "dbo:actScore";
|
|
816
|
-
actingHeadteacher: "dbo:actingHeadteacher";
|
|
817
|
-
activeCases: "dbo:activeCases";
|
|
818
|
-
activeYears: "dbo:activeYears";
|
|
819
|
-
activeYearsEndDate: "dbo:activeYearsEndDate";
|
|
820
|
-
activeYearsEndDateMgr: "dbo:activeYearsEndDateMgr";
|
|
821
|
-
activeYearsEndYear: "dbo:activeYearsEndYear";
|
|
822
|
-
activeYearsEndYearMgr: "dbo:activeYearsEndYearMgr";
|
|
823
|
-
activeYearsStartDate: "dbo:activeYearsStartDate";
|
|
824
|
-
activeYearsStartDateMgr: "dbo:activeYearsStartDateMgr";
|
|
825
|
-
activeYearsStartYear: "dbo:activeYearsStartYear";
|
|
826
|
-
activeYearsStartYearMgr: "dbo:activeYearsStartYearMgr";
|
|
827
|
-
activity: "dbo:activity";
|
|
828
|
-
address: "dbo:address";
|
|
829
|
-
addressInRoad: "dbo:addressInRoad";
|
|
830
|
-
adjacentSettlement: "dbo:adjacentSettlement";
|
|
831
|
-
administrativeCenter: "dbo:administrativeCenter";
|
|
832
|
-
administrativeCollectivity: "dbo:administrativeCollectivity";
|
|
833
|
-
administrativeDistrict: "dbo:administrativeDistrict";
|
|
834
|
-
administrativeHeadCity: "dbo:administrativeHeadCity";
|
|
835
|
-
administrativeStatus: "dbo:administrativeStatus";
|
|
836
|
-
administrator: "dbo:administrator";
|
|
837
|
-
afdbId: "dbo:afdbId";
|
|
838
|
-
affair: "dbo:affair";
|
|
839
|
-
affiliate: "dbo:affiliate";
|
|
840
|
-
affiliation: "dbo:affiliation";
|
|
841
|
-
afiAward: "dbo:afiAward";
|
|
842
|
-
age: "dbo:age";
|
|
843
|
-
ageRange: "dbo:ageRange";
|
|
844
|
-
agency: "dbo:agency";
|
|
845
|
-
agencyStationCode: "dbo:agencyStationCode";
|
|
846
|
-
agglomeration: "dbo:agglomeration";
|
|
847
|
-
agglomerationArea: "dbo:agglomerationArea";
|
|
848
|
-
agglomerationDemographics: "dbo:agglomerationDemographics";
|
|
849
|
-
agglomerationPopulation: "dbo:agglomerationPopulation";
|
|
850
|
-
agglomerationPopulationTotal: "dbo:agglomerationPopulationTotal";
|
|
851
|
-
agglomerationPopulationYear: "dbo:agglomerationPopulationYear";
|
|
852
|
-
aggregation: "dbo:aggregation";
|
|
853
|
-
airDate: "dbo:airDate";
|
|
854
|
-
aircraftAttack: "dbo:aircraftAttack";
|
|
855
|
-
aircraftBomber: "dbo:aircraftBomber";
|
|
856
|
-
aircraftElectronic: "dbo:aircraftElectronic";
|
|
857
|
-
aircraftFighter: "dbo:aircraftFighter";
|
|
858
|
-
aircraftHelicopter: "dbo:aircraftHelicopter";
|
|
859
|
-
aircraftHelicopterAttack: "dbo:aircraftHelicopterAttack";
|
|
860
|
-
aircraftHelicopterCargo: "dbo:aircraftHelicopterCargo";
|
|
861
|
-
aircraftHelicopterMultirole: "dbo:aircraftHelicopterMultirole";
|
|
862
|
-
aircraftHelicopterObservation: "dbo:aircraftHelicopterObservation";
|
|
863
|
-
aircraftHelicopterTransport: "dbo:aircraftHelicopterTransport";
|
|
864
|
-
aircraftHelicopterUtility: "dbo:aircraftHelicopterUtility";
|
|
865
|
-
aircraftInterceptor: "dbo:aircraftInterceptor";
|
|
866
|
-
aircraftPatrol: "dbo:aircraftPatrol";
|
|
867
|
-
aircraftRecon: "dbo:aircraftRecon";
|
|
868
|
-
aircraftTrainer: "dbo:aircraftTrainer";
|
|
869
|
-
aircraftTransport: "dbo:aircraftTransport";
|
|
870
|
-
aircraftType: "dbo:aircraftType";
|
|
871
|
-
aircraftUser: "dbo:aircraftUser";
|
|
872
|
-
airportUsing: "dbo:airportUsing";
|
|
873
|
-
aitaCode: "dbo:aitaCode";
|
|
874
|
-
albedo: "dbo:albedo";
|
|
875
|
-
album: "dbo:album";
|
|
876
|
-
albumRuntime: "dbo:albumRuntime";
|
|
877
|
-
alias: "dbo:alias";
|
|
878
|
-
allcinemaId: "dbo:allcinemaId";
|
|
879
|
-
allegiance: "dbo:allegiance";
|
|
880
|
-
alliance: "dbo:alliance";
|
|
881
|
-
almaMater: "dbo:almaMater";
|
|
882
|
-
alongside: "dbo:alongside";
|
|
883
|
-
alpsGroup: "dbo:alpsGroup";
|
|
884
|
-
alpsMainPart: "dbo:alpsMainPart";
|
|
885
|
-
alpsMajorSector: "dbo:alpsMajorSector";
|
|
886
|
-
alpsSection: "dbo:alpsSection";
|
|
887
|
-
alpsSoiusaCode: "dbo:alpsSoiusaCode";
|
|
888
|
-
alpsSubgroup: "dbo:alpsSubgroup";
|
|
889
|
-
alpsSubsection: "dbo:alpsSubsection";
|
|
890
|
-
alpsSupergroup: "dbo:alpsSupergroup";
|
|
891
|
-
alternativeName: "dbo:alternativeName";
|
|
892
|
-
alternativeTitle: "dbo:alternativeTitle";
|
|
893
|
-
altitude: "dbo:altitude";
|
|
894
|
-
alumni: "dbo:alumni";
|
|
895
|
-
amateurDefeat: "dbo:amateurDefeat";
|
|
896
|
-
amateurFight: "dbo:amateurFight";
|
|
897
|
-
amateurKo: "dbo:amateurKo";
|
|
898
|
-
amateurNoContest: "dbo:amateurNoContest";
|
|
899
|
-
amateurTeam: "dbo:amateurTeam";
|
|
900
|
-
amateurTie: "dbo:amateurTie";
|
|
901
|
-
amateurTitle: "dbo:amateurTitle";
|
|
902
|
-
amateurVictory: "dbo:amateurVictory";
|
|
903
|
-
amateurYear: "dbo:amateurYear";
|
|
904
|
-
americanComedyAward: "dbo:americanComedyAward";
|
|
905
|
-
amgid: "dbo:amgid";
|
|
906
|
-
amsterdamCode: "dbo:amsterdamCode";
|
|
907
|
-
analogChannel: "dbo:analogChannel";
|
|
908
|
-
animal: "dbo:animal";
|
|
909
|
-
animator: "dbo:animator";
|
|
910
|
-
anniversary: "dbo:anniversary";
|
|
911
|
-
announcedFrom: "dbo:announcedFrom";
|
|
912
|
-
annualTemperature: "dbo:annualTemperature";
|
|
913
|
-
anthem: "dbo:anthem";
|
|
914
|
-
aoCloassification: "dbo:aoCloassification";
|
|
915
|
-
apcPresident: "dbo:apcPresident";
|
|
916
|
-
apoapsis: "dbo:apoapsis";
|
|
917
|
-
apofocus: "dbo:apofocus";
|
|
918
|
-
apparentMagnitude: "dbo:apparentMagnitude";
|
|
919
|
-
appearance: "dbo:appearance";
|
|
920
|
-
appearancesInLeague: "dbo:appearancesInLeague";
|
|
921
|
-
appearancesInNationalTeam: "dbo:appearancesInNationalTeam";
|
|
922
|
-
appointer: "dbo:appointer";
|
|
923
|
-
apprehended: "dbo:apprehended";
|
|
924
|
-
approach: "dbo:approach";
|
|
925
|
-
approvedByLowerParliament: "dbo:approvedByLowerParliament";
|
|
926
|
-
approvedByUpperParliament: "dbo:approvedByUpperParliament";
|
|
927
|
-
approximateCalories: "dbo:approximateCalories";
|
|
928
|
-
apskritis: "dbo:apskritis";
|
|
929
|
-
archipelago: "dbo:archipelago";
|
|
930
|
-
architect: "dbo:architect";
|
|
931
|
-
architectualBureau: "dbo:architectualBureau";
|
|
932
|
-
architecturalMovement: "dbo:architecturalMovement";
|
|
933
|
-
architecturalStyle: "dbo:architecturalStyle";
|
|
934
|
-
area: "dbo:area";
|
|
935
|
-
areaCode: "dbo:areaCode";
|
|
936
|
-
areaDate: "dbo:areaDate";
|
|
937
|
-
areaLand: "dbo:areaLand";
|
|
938
|
-
areaMetro: "dbo:areaMetro";
|
|
939
|
-
areaOfCatchment: "dbo:areaOfCatchment";
|
|
940
|
-
areaOfCatchmentQuote: "dbo:areaOfCatchmentQuote";
|
|
941
|
-
areaOfSearch: "dbo:areaOfSearch";
|
|
942
|
-
areaQuote: "dbo:areaQuote";
|
|
943
|
-
areaRank: "dbo:areaRank";
|
|
944
|
-
areaRural: "dbo:areaRural";
|
|
945
|
-
areaTotal: "dbo:areaTotal";
|
|
946
|
-
areaTotalRanking: "dbo:areaTotalRanking";
|
|
947
|
-
areaUrban: "dbo:areaUrban";
|
|
948
|
-
areaWater: "dbo:areaWater";
|
|
949
|
-
argueDate: "dbo:argueDate";
|
|
950
|
-
arielAward: "dbo:arielAward";
|
|
951
|
-
arm: "dbo:arm";
|
|
952
|
-
army: "dbo:army";
|
|
953
|
-
arrestDate: "dbo:arrestDate";
|
|
954
|
-
arrondissement: "dbo:arrondissement";
|
|
955
|
-
artPatron: "dbo:artPatron";
|
|
956
|
-
artery: "dbo:artery";
|
|
957
|
-
artificialSnowArea: "dbo:artificialSnowArea";
|
|
958
|
-
artist: "dbo:artist";
|
|
959
|
-
artisticFunction: "dbo:artisticFunction";
|
|
960
|
-
asWikiText: "dbo:asWikiText";
|
|
961
|
-
ascent: "dbo:ascent";
|
|
962
|
-
asiaChampionship: "dbo:asiaChampionship";
|
|
963
|
-
aspectRatio: "dbo:aspectRatio";
|
|
964
|
-
assembly: "dbo:assembly";
|
|
965
|
-
assetUnderManagement: "dbo:assetUnderManagement";
|
|
966
|
-
assets: "dbo:assets";
|
|
967
|
-
assistantPrincipal: "dbo:assistantPrincipal";
|
|
968
|
-
associate: "dbo:associate";
|
|
969
|
-
associateEditor: "dbo:associateEditor";
|
|
970
|
-
associateStar: "dbo:associateStar";
|
|
971
|
-
associatedAct: "dbo:associatedAct";
|
|
972
|
-
associatedBand: "dbo:associatedBand";
|
|
973
|
-
associatedMusicalArtist: "dbo:associatedMusicalArtist";
|
|
974
|
-
associatedRocket: "dbo:associatedRocket";
|
|
975
|
-
associationOfLocalGovernment: "dbo:associationOfLocalGovernment";
|
|
976
|
-
astrazenca: "dbo:astrazenca";
|
|
977
|
-
astrazencaCumul: "dbo:astrazencaCumul";
|
|
978
|
-
astrologicalSign: "dbo:astrologicalSign";
|
|
979
|
-
atPage: "dbo:atPage";
|
|
980
|
-
atRowNumber: "dbo:atRowNumber";
|
|
981
|
-
atcCode: "dbo:atcCode";
|
|
982
|
-
atcPrefix: "dbo:atcPrefix";
|
|
983
|
-
atcSuffix: "dbo:atcSuffix";
|
|
984
|
-
athletics: "dbo:athletics";
|
|
985
|
-
athleticsDiscipline: "dbo:athleticsDiscipline";
|
|
986
|
-
atomicNumber: "dbo:atomicNumber";
|
|
987
|
-
attorneyGeneral: "dbo:attorneyGeneral";
|
|
988
|
-
aunt: "dbo:aunt";
|
|
989
|
-
australiaOpenDouble: "dbo:australiaOpenDouble";
|
|
990
|
-
australiaOpenMixed: "dbo:australiaOpenMixed";
|
|
991
|
-
australiaOpenSingle: "dbo:australiaOpenSingle";
|
|
992
|
-
author: "dbo:author";
|
|
993
|
-
authority: "dbo:authority";
|
|
994
|
-
authorityMandate: "dbo:authorityMandate";
|
|
995
|
-
authorityTitle: "dbo:authorityTitle";
|
|
996
|
-
automobileModel: "dbo:automobileModel";
|
|
997
|
-
automobilePlatform: "dbo:automobilePlatform";
|
|
998
|
-
autonomy: "dbo:autonomy";
|
|
999
|
-
availableSmartCard: "dbo:availableSmartCard";
|
|
1000
|
-
average: "dbo:average";
|
|
1001
|
-
averageAnnualGeneration: "dbo:averageAnnualGeneration";
|
|
1002
|
-
averageClassSize: "dbo:averageClassSize";
|
|
1003
|
-
averageDepth: "dbo:averageDepth";
|
|
1004
|
-
averageDepthQuote: "dbo:averageDepthQuote";
|
|
1005
|
-
averageSpeed: "dbo:averageSpeed";
|
|
1006
|
-
avifaunaPopulation: "dbo:avifaunaPopulation";
|
|
1007
|
-
award: "dbo:award";
|
|
1008
|
-
awardName: "dbo:awardName";
|
|
1009
|
-
awayColourHexCode: "dbo:awayColourHexCode";
|
|
1010
|
-
bSide: "dbo:bSide";
|
|
1011
|
-
background: "dbo:background";
|
|
1012
|
-
backhand: "dbo:backhand";
|
|
1013
|
-
badGuy: "dbo:badGuy";
|
|
1014
|
-
baftaAward: "dbo:baftaAward";
|
|
1015
|
-
band: "dbo:band";
|
|
1016
|
-
bandMember: "dbo:bandMember";
|
|
1017
|
-
barPassRate: "dbo:barPassRate";
|
|
1018
|
-
barangays: "dbo:barangays";
|
|
1019
|
-
basedOn: "dbo:basedOn";
|
|
1020
|
-
battery: "dbo:battery";
|
|
1021
|
-
battingSide: "dbo:battingSide";
|
|
1022
|
-
battle: "dbo:battle";
|
|
1023
|
-
battleHonours: "dbo:battleHonours";
|
|
1024
|
-
bbr: "dbo:bbr";
|
|
1025
|
-
beatifiedBy: "dbo:beatifiedBy";
|
|
1026
|
-
beatifiedDate: "dbo:beatifiedDate";
|
|
1027
|
-
beatifiedPlace: "dbo:beatifiedPlace";
|
|
1028
|
-
bedCount: "dbo:bedCount";
|
|
1029
|
-
believers: "dbo:believers";
|
|
1030
|
-
beltwayCity: "dbo:beltwayCity";
|
|
1031
|
-
bestFinish: "dbo:bestFinish";
|
|
1032
|
-
bestLap: "dbo:bestLap";
|
|
1033
|
-
bestRankDouble: "dbo:bestRankDouble";
|
|
1034
|
-
bestRankSingle: "dbo:bestRankSingle";
|
|
1035
|
-
bestWsopRank: "dbo:bestWsopRank";
|
|
1036
|
-
bestYearWsop: "dbo:bestYearWsop";
|
|
1037
|
-
bgafdId: "dbo:bgafdId";
|
|
1038
|
-
bibsysId: "dbo:bibsysId";
|
|
1039
|
-
bicycleInformation: "dbo:bicycleInformation";
|
|
1040
|
-
bigPoolRecord: "dbo:bigPoolRecord";
|
|
1041
|
-
biggestCity: "dbo:biggestCity";
|
|
1042
|
-
billed: "dbo:billed";
|
|
1043
|
-
binomial: "dbo:binomial";
|
|
1044
|
-
binomialAuthority: "dbo:binomialAuthority";
|
|
1045
|
-
bioavailability: "dbo:bioavailability";
|
|
1046
|
-
bioclimate: "dbo:bioclimate";
|
|
1047
|
-
biome: "dbo:biome";
|
|
1048
|
-
bird: "dbo:bird";
|
|
1049
|
-
birthDate: "dbo:birthDate";
|
|
1050
|
-
birthName: "dbo:birthName";
|
|
1051
|
-
birthPlace: "dbo:birthPlace";
|
|
1052
|
-
birthSign: "dbo:birthSign";
|
|
1053
|
-
birthYear: "dbo:birthYear";
|
|
1054
|
-
bishopric: "dbo:bishopric";
|
|
1055
|
-
blackLongDistancePisteNumber: "dbo:blackLongDistancePisteNumber";
|
|
1056
|
-
blackSkiPisteNumber: "dbo:blackSkiPisteNumber";
|
|
1057
|
-
blazon: "dbo:blazon";
|
|
1058
|
-
blazonCaption: "dbo:blazonCaption";
|
|
1059
|
-
blazonLink: "dbo:blazonLink";
|
|
1060
|
-
blazonRatio: "dbo:blazonRatio";
|
|
1061
|
-
block: "dbo:block";
|
|
1062
|
-
blockAlloy: "dbo:blockAlloy";
|
|
1063
|
-
bloodGroup: "dbo:bloodGroup";
|
|
1064
|
-
bloodType: "dbo:bloodType";
|
|
1065
|
-
blueLongDistancePisteNumber: "dbo:blueLongDistancePisteNumber";
|
|
1066
|
-
blueSkiPisteNumber: "dbo:blueSkiPisteNumber";
|
|
1067
|
-
bnfId: "dbo:bnfId";
|
|
1068
|
-
board: "dbo:board";
|
|
1069
|
-
bodyDiscovered: "dbo:bodyDiscovered";
|
|
1070
|
-
bodyStyle: "dbo:bodyStyle";
|
|
1071
|
-
boiler: "dbo:boiler";
|
|
1072
|
-
boilerPressure: "dbo:boilerPressure";
|
|
1073
|
-
boilingPoint: "dbo:boilingPoint";
|
|
1074
|
-
book: "dbo:book";
|
|
1075
|
-
booster: "dbo:booster";
|
|
1076
|
-
border: "dbo:border";
|
|
1077
|
-
borough: "dbo:borough";
|
|
1078
|
-
bourgmestre: "dbo:bourgmestre";
|
|
1079
|
-
bowlRecord: "dbo:bowlRecord";
|
|
1080
|
-
bowlingSide: "dbo:bowlingSide";
|
|
1081
|
-
boxerStyle: "dbo:boxerStyle";
|
|
1082
|
-
bpnId: "dbo:bpnId";
|
|
1083
|
-
brainInfoNumber: "dbo:brainInfoNumber";
|
|
1084
|
-
brainInfoType: "dbo:brainInfoType";
|
|
1085
|
-
branchFrom: "dbo:branchFrom";
|
|
1086
|
-
branchTo: "dbo:branchTo";
|
|
1087
|
-
brand: "dbo:brand";
|
|
1088
|
-
breeder: "dbo:breeder";
|
|
1089
|
-
bridgeCarries: "dbo:bridgeCarries";
|
|
1090
|
-
brinCode: "dbo:brinCode";
|
|
1091
|
-
britishComedyAwards: "dbo:britishComedyAwards";
|
|
1092
|
-
britishOpen: "dbo:britishOpen";
|
|
1093
|
-
britishWins: "dbo:britishWins";
|
|
1094
|
-
broadcastArea: "dbo:broadcastArea";
|
|
1095
|
-
broadcastNetwork: "dbo:broadcastNetwork";
|
|
1096
|
-
broadcastRepeater: "dbo:broadcastRepeater";
|
|
1097
|
-
broadcastStationClass: "dbo:broadcastStationClass";
|
|
1098
|
-
broadcastTranslator: "dbo:broadcastTranslator";
|
|
1099
|
-
bronzeMedalDouble: "dbo:bronzeMedalDouble";
|
|
1100
|
-
bronzeMedalMixed: "dbo:bronzeMedalMixed";
|
|
1101
|
-
bronzeMedalSingle: "dbo:bronzeMedalSingle";
|
|
1102
|
-
bronzeMedalist: "dbo:bronzeMedalist";
|
|
1103
|
-
brother: "dbo:brother";
|
|
1104
|
-
budget: "dbo:budget";
|
|
1105
|
-
budgetYear: "dbo:budgetYear";
|
|
1106
|
-
builder: "dbo:builder";
|
|
1107
|
-
building: "dbo:building";
|
|
1108
|
-
buildingEndDate: "dbo:buildingEndDate";
|
|
1109
|
-
buildingEndYear: "dbo:buildingEndYear";
|
|
1110
|
-
buildingStartDate: "dbo:buildingStartDate";
|
|
1111
|
-
buildingStartYear: "dbo:buildingStartYear";
|
|
1112
|
-
buildingType: "dbo:buildingType";
|
|
1113
|
-
bustSize: "dbo:bustSize";
|
|
1114
|
-
bustWaistHipSize: "dbo:bustWaistHipSize";
|
|
1115
|
-
cableCar: "dbo:cableCar";
|
|
1116
|
-
calculationNeeds: "dbo:calculationNeeds";
|
|
1117
|
-
callSign: "dbo:callSign";
|
|
1118
|
-
callsignMeaning: "dbo:callsignMeaning";
|
|
1119
|
-
campus: "dbo:campus";
|
|
1120
|
-
campusSize: "dbo:campusSize";
|
|
1121
|
-
campusType: "dbo:campusType";
|
|
1122
|
-
canBaggageChecked: "dbo:canBaggageChecked";
|
|
1123
|
-
cannonNumber: "dbo:cannonNumber";
|
|
1124
|
-
canonizedBy: "dbo:canonizedBy";
|
|
1125
|
-
canonizedDate: "dbo:canonizedDate";
|
|
1126
|
-
canonizedPlace: "dbo:canonizedPlace";
|
|
1127
|
-
canton: "dbo:canton";
|
|
1128
|
-
capacity: "dbo:capacity";
|
|
1129
|
-
capacityFactor: "dbo:capacityFactor";
|
|
1130
|
-
capital: "dbo:capital";
|
|
1131
|
-
capitalCoordinates: "dbo:capitalCoordinates";
|
|
1132
|
-
capitalCountry: "dbo:capitalCountry";
|
|
1133
|
-
capitalDistrict: "dbo:capitalDistrict";
|
|
1134
|
-
capitalElevation: "dbo:capitalElevation";
|
|
1135
|
-
capitalMountain: "dbo:capitalMountain";
|
|
1136
|
-
capitalPlace: "dbo:capitalPlace";
|
|
1137
|
-
capitalPosition: "dbo:capitalPosition";
|
|
1138
|
-
capitalRegion: "dbo:capitalRegion";
|
|
1139
|
-
captureDate: "dbo:captureDate";
|
|
1140
|
-
carNumber: "dbo:carNumber";
|
|
1141
|
-
carbohydrate: "dbo:carbohydrate";
|
|
1142
|
-
carcinogen: "dbo:carcinogen";
|
|
1143
|
-
careerPoints: "dbo:careerPoints";
|
|
1144
|
-
careerPrizeMoney: "dbo:careerPrizeMoney";
|
|
1145
|
-
careerStation: "dbo:careerStation";
|
|
1146
|
-
cargoFuel: "dbo:cargoFuel";
|
|
1147
|
-
cargoGas: "dbo:cargoGas";
|
|
1148
|
-
cargoWater: "dbo:cargoWater";
|
|
1149
|
-
casNumber: "dbo:casNumber";
|
|
1150
|
-
casSupplemental: "dbo:casSupplemental";
|
|
1151
|
-
case: "dbo:case";
|
|
1152
|
-
casualties: "dbo:casualties";
|
|
1153
|
-
catch: "dbo:catch";
|
|
1154
|
-
category: "dbo:category";
|
|
1155
|
-
caterer: "dbo:caterer";
|
|
1156
|
-
catholicPercentage: "dbo:catholicPercentage";
|
|
1157
|
-
causalties: "dbo:causalties";
|
|
1158
|
-
causeOfDeath: "dbo:causeOfDeath";
|
|
1159
|
-
causedBy: "dbo:causedBy";
|
|
1160
|
-
ccaState: "dbo:ccaState";
|
|
1161
|
-
ceeb: "dbo:ceeb";
|
|
1162
|
-
ceiling: "dbo:ceiling";
|
|
1163
|
-
cemetery: "dbo:cemetery";
|
|
1164
|
-
censusYear: "dbo:censusYear";
|
|
1165
|
-
center: "dbo:center";
|
|
1166
|
-
centuryBreaks: "dbo:centuryBreaks";
|
|
1167
|
-
ceo: "dbo:ceo";
|
|
1168
|
-
ceremonialCounty: "dbo:ceremonialCounty";
|
|
1169
|
-
certification: "dbo:certification";
|
|
1170
|
-
certificationDate: "dbo:certificationDate";
|
|
1171
|
-
cesarAward: "dbo:cesarAward";
|
|
1172
|
-
chEBI: "dbo:chEBI";
|
|
1173
|
-
chEMBL: "dbo:chEMBL";
|
|
1174
|
-
chain: "dbo:chain";
|
|
1175
|
-
chairLabel: "dbo:chairLabel";
|
|
1176
|
-
chairman: "dbo:chairman";
|
|
1177
|
-
chairmanTitle: "dbo:chairmanTitle";
|
|
1178
|
-
chairperson: "dbo:chairperson";
|
|
1179
|
-
champion: "dbo:champion";
|
|
1180
|
-
championInDouble: "dbo:championInDouble";
|
|
1181
|
-
championInDoubleFemale: "dbo:championInDoubleFemale";
|
|
1182
|
-
championInDoubleMale: "dbo:championInDoubleMale";
|
|
1183
|
-
championInMixedDouble: "dbo:championInMixedDouble";
|
|
1184
|
-
championInSingle: "dbo:championInSingle";
|
|
1185
|
-
championInSingleFemale: "dbo:championInSingleFemale";
|
|
1186
|
-
championInSingleMale: "dbo:championInSingleMale";
|
|
1187
|
-
championships: "dbo:championships";
|
|
1188
|
-
chancellor: "dbo:chancellor";
|
|
1189
|
-
channel: "dbo:channel";
|
|
1190
|
-
chaplain: "dbo:chaplain";
|
|
1191
|
-
characterInPlay: "dbo:characterInPlay";
|
|
1192
|
-
chef: "dbo:chef";
|
|
1193
|
-
chemSpiderId: "dbo:chemSpiderId";
|
|
1194
|
-
chemicalFormula: "dbo:chemicalFormula";
|
|
1195
|
-
chiefEditor: "dbo:chiefEditor";
|
|
1196
|
-
chiefPlace: "dbo:chiefPlace";
|
|
1197
|
-
child: "dbo:child";
|
|
1198
|
-
childOrganisation: "dbo:childOrganisation";
|
|
1199
|
-
choreographer: "dbo:choreographer";
|
|
1200
|
-
chorusCharacterInPlay: "dbo:chorusCharacterInPlay";
|
|
1201
|
-
christeningDate: "dbo:christeningDate";
|
|
1202
|
-
chromosome: "dbo:chromosome";
|
|
1203
|
-
cinematography: "dbo:cinematography";
|
|
1204
|
-
circle: "dbo:circle";
|
|
1205
|
-
circuitLength: "dbo:circuitLength";
|
|
1206
|
-
circuitName: "dbo:circuitName";
|
|
1207
|
-
circulation: "dbo:circulation";
|
|
1208
|
-
circumcised: "dbo:circumcised";
|
|
1209
|
-
cites: "dbo:cites";
|
|
1210
|
-
citizenship: "dbo:citizenship";
|
|
1211
|
-
city: "dbo:city";
|
|
1212
|
-
cityLink: "dbo:cityLink";
|
|
1213
|
-
cityRank: "dbo:cityRank";
|
|
1214
|
-
citySince: "dbo:citySince";
|
|
1215
|
-
cityType: "dbo:cityType";
|
|
1216
|
-
clade: "dbo:clade";
|
|
1217
|
-
class: "dbo:class";
|
|
1218
|
-
classes: "dbo:classes";
|
|
1219
|
-
classification: "dbo:classification";
|
|
1220
|
-
classis: "dbo:classis";
|
|
1221
|
-
climate: "dbo:climate";
|
|
1222
|
-
climbUpNumber: "dbo:climbUpNumber";
|
|
1223
|
-
closeTo: "dbo:closeTo";
|
|
1224
|
-
closingDate: "dbo:closingDate";
|
|
1225
|
-
closingFilm: "dbo:closingFilm";
|
|
1226
|
-
closingYear: "dbo:closingYear";
|
|
1227
|
-
clothSize: "dbo:clothSize";
|
|
1228
|
-
clothingSize: "dbo:clothingSize";
|
|
1229
|
-
club: "dbo:club";
|
|
1230
|
-
clubsRecordGoalscorer: "dbo:clubsRecordGoalscorer";
|
|
1231
|
-
cluster: "dbo:cluster";
|
|
1232
|
-
cmpEvaDuration: "dbo:cmpEvaDuration";
|
|
1233
|
-
cmykCoordinateBlack: "dbo:cmykCoordinateBlack";
|
|
1234
|
-
cmykCoordinateCyanic: "dbo:cmykCoordinateCyanic";
|
|
1235
|
-
cmykCoordinateMagenta: "dbo:cmykCoordinateMagenta";
|
|
1236
|
-
cmykCoordinateYellow: "dbo:cmykCoordinateYellow";
|
|
1237
|
-
co2Emission: "dbo:co2Emission";
|
|
1238
|
-
coExecutiveProducer: "dbo:coExecutiveProducer";
|
|
1239
|
-
coProducer: "dbo:coProducer";
|
|
1240
|
-
coach: "dbo:coach";
|
|
1241
|
-
coachClub: "dbo:coachClub";
|
|
1242
|
-
coachSeason: "dbo:coachSeason";
|
|
1243
|
-
coachedTeam: "dbo:coachedTeam";
|
|
1244
|
-
coachingRecord: "dbo:coachingRecord";
|
|
1245
|
-
coalition: "dbo:coalition";
|
|
1246
|
-
coastLength: "dbo:coastLength";
|
|
1247
|
-
coastLine: "dbo:coastLine";
|
|
1248
|
-
coatOfArms: "dbo:coatOfArms";
|
|
1249
|
-
code: "dbo:code";
|
|
1250
|
-
codeBook: "dbo:codeBook";
|
|
1251
|
-
codeDistrict: "dbo:codeDistrict";
|
|
1252
|
-
codeIndex: "dbo:codeIndex";
|
|
1253
|
-
codeListOfHonour: "dbo:codeListOfHonour";
|
|
1254
|
-
codeMemorial: "dbo:codeMemorial";
|
|
1255
|
-
codeMunicipalMonument: "dbo:codeMunicipalMonument";
|
|
1256
|
-
codeNationalMonument: "dbo:codeNationalMonument";
|
|
1257
|
-
codeProvincialMonument: "dbo:codeProvincialMonument";
|
|
1258
|
-
codeSettlement: "dbo:codeSettlement";
|
|
1259
|
-
codeStockExchange: "dbo:codeStockExchange";
|
|
1260
|
-
coden: "dbo:coden";
|
|
1261
|
-
coemperor: "dbo:coemperor";
|
|
1262
|
-
collaboration: "dbo:collaboration";
|
|
1263
|
-
colleague: "dbo:colleague";
|
|
1264
|
-
collection: "dbo:collection";
|
|
1265
|
-
collectionSize: "dbo:collectionSize";
|
|
1266
|
-
collectivityMinority: "dbo:collectivityMinority";
|
|
1267
|
-
college: "dbo:college";
|
|
1268
|
-
collegeHof: "dbo:collegeHof";
|
|
1269
|
-
colonialName: "dbo:colonialName";
|
|
1270
|
-
colorChart: "dbo:colorChart";
|
|
1271
|
-
colour: "dbo:colour";
|
|
1272
|
-
colourHexCode: "dbo:colourHexCode";
|
|
1273
|
-
colourName: "dbo:colourName";
|
|
1274
|
-
combatant: "dbo:combatant";
|
|
1275
|
-
comic: "dbo:comic";
|
|
1276
|
-
comitat: "dbo:comitat";
|
|
1277
|
-
command: "dbo:command";
|
|
1278
|
-
commandModule: "dbo:commandModule";
|
|
1279
|
-
commandStructure: "dbo:commandStructure";
|
|
1280
|
-
commandant: "dbo:commandant";
|
|
1281
|
-
commander: "dbo:commander";
|
|
1282
|
-
comment: "dbo:comment";
|
|
1283
|
-
commissioner: "dbo:commissioner";
|
|
1284
|
-
commissionerDate: "dbo:commissionerDate";
|
|
1285
|
-
commissioningDate: "dbo:commissioningDate";
|
|
1286
|
-
committee: "dbo:committee";
|
|
1287
|
-
committeeInLegislature: "dbo:committeeInLegislature";
|
|
1288
|
-
commonName: "dbo:commonName";
|
|
1289
|
-
commune: "dbo:commune";
|
|
1290
|
-
communityIsoCode: "dbo:communityIsoCode";
|
|
1291
|
-
company: "dbo:company";
|
|
1292
|
-
comparable: "dbo:comparable";
|
|
1293
|
-
competition: "dbo:competition";
|
|
1294
|
-
competitionTitle: "dbo:competitionTitle";
|
|
1295
|
-
compiler: "dbo:compiler";
|
|
1296
|
-
completionDate: "dbo:completionDate";
|
|
1297
|
-
complexion: "dbo:complexion";
|
|
1298
|
-
complexity: "dbo:complexity";
|
|
1299
|
-
complications: "dbo:complications";
|
|
1300
|
-
component: "dbo:component";
|
|
1301
|
-
composer: "dbo:composer";
|
|
1302
|
-
compressionRatio: "dbo:compressionRatio";
|
|
1303
|
-
computingInput: "dbo:computingInput";
|
|
1304
|
-
computingMedia: "dbo:computingMedia";
|
|
1305
|
-
computingPlatform: "dbo:computingPlatform";
|
|
1306
|
-
configuration: "dbo:configuration";
|
|
1307
|
-
confirmedCases: "dbo:confirmedCases";
|
|
1308
|
-
conflict: "dbo:conflict";
|
|
1309
|
-
congressionalDistrict: "dbo:congressionalDistrict";
|
|
1310
|
-
connectsReferencedTo: "dbo:connectsReferencedTo";
|
|
1311
|
-
connotation: "dbo:connotation";
|
|
1312
|
-
consecration: "dbo:consecration";
|
|
1313
|
-
conservationStatus: "dbo:conservationStatus";
|
|
1314
|
-
conservationStatusSystem: "dbo:conservationStatusSystem";
|
|
1315
|
-
constellation: "dbo:constellation";
|
|
1316
|
-
constituencyDistrict: "dbo:constituencyDistrict";
|
|
1317
|
-
construction: "dbo:construction";
|
|
1318
|
-
constructionMaterial: "dbo:constructionMaterial";
|
|
1319
|
-
contest: "dbo:contest";
|
|
1320
|
-
continent: "dbo:continent";
|
|
1321
|
-
continentRank: "dbo:continentRank";
|
|
1322
|
-
continentalTournament: "dbo:continentalTournament";
|
|
1323
|
-
continentalTournamentBronze: "dbo:continentalTournamentBronze";
|
|
1324
|
-
continentalTournamentGold: "dbo:continentalTournamentGold";
|
|
1325
|
-
continentalTournamentSilver: "dbo:continentalTournamentSilver";
|
|
1326
|
-
contractAward: "dbo:contractAward";
|
|
1327
|
-
contractor: "dbo:contractor";
|
|
1328
|
-
convictionDate: "dbo:convictionDate";
|
|
1329
|
-
convictionPenalty: "dbo:convictionPenalty";
|
|
1330
|
-
coolingSystem: "dbo:coolingSystem";
|
|
1331
|
-
copilote: "dbo:copilote";
|
|
1332
|
-
coronationDate: "dbo:coronationDate";
|
|
1333
|
-
cosparId: "dbo:cosparId";
|
|
1334
|
-
cost: "dbo:cost";
|
|
1335
|
-
costumeDesigner: "dbo:costumeDesigner";
|
|
1336
|
-
council: "dbo:council";
|
|
1337
|
-
councilArea: "dbo:councilArea";
|
|
1338
|
-
country: "dbo:country";
|
|
1339
|
-
countryCode: "dbo:countryCode";
|
|
1340
|
-
countryOrigin: "dbo:countryOrigin";
|
|
1341
|
-
countryRank: "dbo:countryRank";
|
|
1342
|
-
countryWithFirstAstronaut: "dbo:countryWithFirstAstronaut";
|
|
1343
|
-
countryWithFirstSatellite: "dbo:countryWithFirstSatellite";
|
|
1344
|
-
countryWithFirstSatelliteLaunched: "dbo:countryWithFirstSatelliteLaunched";
|
|
1345
|
-
countryWithFirstSpaceflight: "dbo:countryWithFirstSpaceflight";
|
|
1346
|
-
county: "dbo:county";
|
|
1347
|
-
countySeat: "dbo:countySeat";
|
|
1348
|
-
course: "dbo:course";
|
|
1349
|
-
courseArea: "dbo:courseArea";
|
|
1350
|
-
cousurper: "dbo:cousurper";
|
|
1351
|
-
coverArtist: "dbo:coverArtist";
|
|
1352
|
-
cpu: "dbo:cpu";
|
|
1353
|
-
created: "dbo:created";
|
|
1354
|
-
creationChristianBishop: "dbo:creationChristianBishop";
|
|
1355
|
-
creationYear: "dbo:creationYear";
|
|
1356
|
-
creativeDirector: "dbo:creativeDirector";
|
|
1357
|
-
creator: "dbo:creator";
|
|
1358
|
-
creatorOfDish: "dbo:creatorOfDish";
|
|
1359
|
-
credit: "dbo:credit";
|
|
1360
|
-
crest: "dbo:crest";
|
|
1361
|
-
crew: "dbo:crew";
|
|
1362
|
-
crewMember: "dbo:crewMember";
|
|
1363
|
-
crewSize: "dbo:crewSize";
|
|
1364
|
-
crews: "dbo:crews";
|
|
1365
|
-
criminalCharge: "dbo:criminalCharge";
|
|
1366
|
-
criteria: "dbo:criteria";
|
|
1367
|
-
crosses: "dbo:crosses";
|
|
1368
|
-
crownDependency: "dbo:crownDependency";
|
|
1369
|
-
cuisine: "dbo:cuisine";
|
|
1370
|
-
cultivatedVariety: "dbo:cultivatedVariety";
|
|
1371
|
-
curator: "dbo:curator";
|
|
1372
|
-
currency: "dbo:currency";
|
|
1373
|
-
currencyCode: "dbo:currencyCode";
|
|
1374
|
-
currentCity: "dbo:currentCity";
|
|
1375
|
-
currentLeague: "dbo:currentLeague";
|
|
1376
|
-
currentMember: "dbo:currentMember";
|
|
1377
|
-
currentPartner: "dbo:currentPartner";
|
|
1378
|
-
currentProduction: "dbo:currentProduction";
|
|
1379
|
-
currentRank: "dbo:currentRank";
|
|
1380
|
-
currentRecord: "dbo:currentRecord";
|
|
1381
|
-
currentSeason: "dbo:currentSeason";
|
|
1382
|
-
currentStatus: "dbo:currentStatus";
|
|
1383
|
-
currentTeam: "dbo:currentTeam";
|
|
1384
|
-
currentTeamManager: "dbo:currentTeamManager";
|
|
1385
|
-
currentTeamMember: "dbo:currentTeamMember";
|
|
1386
|
-
currentWorldChampion: "dbo:currentWorldChampion";
|
|
1387
|
-
currentlyUsedFor: "dbo:currentlyUsedFor";
|
|
1388
|
-
custodian: "dbo:custodian";
|
|
1389
|
-
cyclistGenre: "dbo:cyclistGenre";
|
|
1390
|
-
cylinderBore: "dbo:cylinderBore";
|
|
1391
|
-
cylinderCount: "dbo:cylinderCount";
|
|
1392
|
-
dailyVaccinationsPerMillion: "dbo:dailyVaccinationsPerMillion";
|
|
1393
|
-
dailyVaccinationsRaw: "dbo:dailyVaccinationsRaw";
|
|
1394
|
-
daira: "dbo:daira";
|
|
1395
|
-
dam: "dbo:dam";
|
|
1396
|
-
damage: "dbo:damage";
|
|
1397
|
-
damsire: "dbo:damsire";
|
|
1398
|
-
danseCompetition: "dbo:danseCompetition";
|
|
1399
|
-
danseScore: "dbo:danseScore";
|
|
1400
|
-
dateAct: "dbo:dateAct";
|
|
1401
|
-
dateAgreement: "dbo:dateAgreement";
|
|
1402
|
-
dateBudget: "dbo:dateBudget";
|
|
1403
|
-
dateClosed: "dbo:dateClosed";
|
|
1404
|
-
dateCompleted: "dbo:dateCompleted";
|
|
1405
|
-
dateConstruction: "dbo:dateConstruction";
|
|
1406
|
-
dateExtended: "dbo:dateExtended";
|
|
1407
|
-
dateLastUpdated: "dbo:dateLastUpdated";
|
|
1408
|
-
dateOfAbandonment: "dbo:dateOfAbandonment";
|
|
1409
|
-
dateOfBurial: "dbo:dateOfBurial";
|
|
1410
|
-
dateUnveiled: "dbo:dateUnveiled";
|
|
1411
|
-
dateUse: "dbo:dateUse";
|
|
1412
|
-
daughter: "dbo:daughter";
|
|
1413
|
-
davisCup: "dbo:davisCup";
|
|
1414
|
-
day: "dbo:day";
|
|
1415
|
-
daylightSavingTimeZone: "dbo:daylightSavingTimeZone";
|
|
1416
|
-
dbnlCodeDutch: "dbo:dbnlCodeDutch";
|
|
1417
|
-
dcc: "dbo:dcc";
|
|
1418
|
-
deFactoLanguage: "dbo:deFactoLanguage";
|
|
1419
|
-
deadInFightDate: "dbo:deadInFightDate";
|
|
1420
|
-
deadInFightPlace: "dbo:deadInFightPlace";
|
|
1421
|
-
dean: "dbo:dean";
|
|
1422
|
-
deanery: "dbo:deanery";
|
|
1423
|
-
deathAge: "dbo:deathAge";
|
|
1424
|
-
deathCause: "dbo:deathCause";
|
|
1425
|
-
deathDate: "dbo:deathDate";
|
|
1426
|
-
deathPlace: "dbo:deathPlace";
|
|
1427
|
-
deathYear: "dbo:deathYear";
|
|
1428
|
-
deaths: "dbo:deaths";
|
|
1429
|
-
debut: "dbo:debut";
|
|
1430
|
-
debutTeam: "dbo:debutTeam";
|
|
1431
|
-
debutWork: "dbo:debutWork";
|
|
1432
|
-
dec: "dbo:dec";
|
|
1433
|
-
decay: "dbo:decay";
|
|
1434
|
-
decideDate: "dbo:decideDate";
|
|
1435
|
-
declination: "dbo:declination";
|
|
1436
|
-
decommissioningDate: "dbo:decommissioningDate";
|
|
1437
|
-
decoration: "dbo:decoration";
|
|
1438
|
-
defeat: "dbo:defeat";
|
|
1439
|
-
defeatAsMgr: "dbo:defeatAsMgr";
|
|
1440
|
-
definition: "dbo:definition";
|
|
1441
|
-
defunct: "dbo:defunct";
|
|
1442
|
-
delegateMayor: "dbo:delegateMayor";
|
|
1443
|
-
delegation: "dbo:delegation";
|
|
1444
|
-
deliveryDate: "dbo:deliveryDate";
|
|
1445
|
-
deme: "dbo:deme";
|
|
1446
|
-
demographics: "dbo:demographics";
|
|
1447
|
-
demographicsAsOf: "dbo:demographicsAsOf";
|
|
1448
|
-
demolitionDate: "dbo:demolitionDate";
|
|
1449
|
-
demolitionYear: "dbo:demolitionYear";
|
|
1450
|
-
demonym: "dbo:demonym";
|
|
1451
|
-
denomination: "dbo:denomination";
|
|
1452
|
-
density: "dbo:density";
|
|
1453
|
-
department: "dbo:department";
|
|
1454
|
-
departmentCode: "dbo:departmentCode";
|
|
1455
|
-
departmentPosition: "dbo:departmentPosition";
|
|
1456
|
-
depictionDescription: "dbo:depictionDescription";
|
|
1457
|
-
depth: "dbo:depth";
|
|
1458
|
-
depthQuote: "dbo:depthQuote";
|
|
1459
|
-
depths: "dbo:depths";
|
|
1460
|
-
deputy: "dbo:deputy";
|
|
1461
|
-
derivative: "dbo:derivative";
|
|
1462
|
-
derivedWord: "dbo:derivedWord";
|
|
1463
|
-
designCompany: "dbo:designCompany";
|
|
1464
|
-
designer: "dbo:designer";
|
|
1465
|
-
destination: "dbo:destination";
|
|
1466
|
-
destructionDate: "dbo:destructionDate";
|
|
1467
|
-
detectionMethod: "dbo:detectionMethod";
|
|
1468
|
-
detractor: "dbo:detractor";
|
|
1469
|
-
developer: "dbo:developer";
|
|
1470
|
-
dfE: "dbo:dfE";
|
|
1471
|
-
diameter: "dbo:diameter";
|
|
1472
|
-
differentialDiagnosis: "dbo:differentialDiagnosis";
|
|
1473
|
-
digitalChannel: "dbo:digitalChannel";
|
|
1474
|
-
digitalSubChannel: "dbo:digitalSubChannel";
|
|
1475
|
-
diocese: "dbo:diocese";
|
|
1476
|
-
diploma: "dbo:diploma";
|
|
1477
|
-
director: "dbo:director";
|
|
1478
|
-
disappearanceDate: "dbo:disappearanceDate";
|
|
1479
|
-
disbanded: "dbo:disbanded";
|
|
1480
|
-
discharge: "dbo:discharge";
|
|
1481
|
-
dischargeAverage: "dbo:dischargeAverage";
|
|
1482
|
-
disciple: "dbo:disciple";
|
|
1483
|
-
discipline: "dbo:discipline";
|
|
1484
|
-
discontinued: "dbo:discontinued";
|
|
1485
|
-
discovered: "dbo:discovered";
|
|
1486
|
-
discoverer: "dbo:discoverer";
|
|
1487
|
-
discovery: "dbo:discovery";
|
|
1488
|
-
disease: "dbo:disease";
|
|
1489
|
-
diseasesDB: "dbo:diseasesDB";
|
|
1490
|
-
diseasesDb: "dbo:diseasesDb";
|
|
1491
|
-
displacement: "dbo:displacement";
|
|
1492
|
-
dissolutionDate: "dbo:dissolutionDate";
|
|
1493
|
-
dissolutionYear: "dbo:dissolutionYear";
|
|
1494
|
-
dissolved: "dbo:dissolved";
|
|
1495
|
-
dist_ly: "dbo:dist_ly";
|
|
1496
|
-
dist_pc: "dbo:dist_pc";
|
|
1497
|
-
distance: "dbo:distance";
|
|
1498
|
-
distanceLaps: "dbo:distanceLaps";
|
|
1499
|
-
distanceToBelfast: "dbo:distanceToBelfast";
|
|
1500
|
-
distanceToCapital: "dbo:distanceToCapital";
|
|
1501
|
-
distanceToCardiff: "dbo:distanceToCardiff";
|
|
1502
|
-
distanceToCharingCross: "dbo:distanceToCharingCross";
|
|
1503
|
-
distanceToDouglas: "dbo:distanceToDouglas";
|
|
1504
|
-
distanceToDublin: "dbo:distanceToDublin";
|
|
1505
|
-
distanceToEdinburgh: "dbo:distanceToEdinburgh";
|
|
1506
|
-
distanceToLondon: "dbo:distanceToLondon";
|
|
1507
|
-
distanceToNearestCity: "dbo:distanceToNearestCity";
|
|
1508
|
-
distanceTraveled: "dbo:distanceTraveled";
|
|
1509
|
-
distributingCompany: "dbo:distributingCompany";
|
|
1510
|
-
distributingLabel: "dbo:distributingLabel";
|
|
1511
|
-
distributor: "dbo:distributor";
|
|
1512
|
-
district: "dbo:district";
|
|
1513
|
-
division: "dbo:division";
|
|
1514
|
-
dockedTime: "dbo:dockedTime";
|
|
1515
|
-
doctoralAdvisor: "dbo:doctoralAdvisor";
|
|
1516
|
-
doctoralStudent: "dbo:doctoralStudent";
|
|
1517
|
-
documentDesignation: "dbo:documentDesignation";
|
|
1518
|
-
documentNumber: "dbo:documentNumber";
|
|
1519
|
-
domain: "dbo:domain";
|
|
1520
|
-
dorlandsId: "dbo:dorlandsId";
|
|
1521
|
-
dorlandsPrefix: "dbo:dorlandsPrefix";
|
|
1522
|
-
dorlandsSuffix: "dbo:dorlandsSuffix";
|
|
1523
|
-
dose: "dbo:dose";
|
|
1524
|
-
dosesFirst: "dbo:dosesFirst";
|
|
1525
|
-
dosesSecond: "dbo:dosesSecond";
|
|
1526
|
-
draft: "dbo:draft";
|
|
1527
|
-
draftLeague: "dbo:draftLeague";
|
|
1528
|
-
draftPick: "dbo:draftPick";
|
|
1529
|
-
draftPosition: "dbo:draftPosition";
|
|
1530
|
-
draftRound: "dbo:draftRound";
|
|
1531
|
-
draftTeam: "dbo:draftTeam";
|
|
1532
|
-
draftYear: "dbo:draftYear";
|
|
1533
|
-
drainsFrom: "dbo:drainsFrom";
|
|
1534
|
-
drainsTo: "dbo:drainsTo";
|
|
1535
|
-
drama: "dbo:drama";
|
|
1536
|
-
dressCode: "dbo:dressCode";
|
|
1537
|
-
drug: "dbo:drug";
|
|
1538
|
-
drugbank: "dbo:drugbank";
|
|
1539
|
-
dryCargo: "dbo:dryCargo";
|
|
1540
|
-
dubber: "dbo:dubber";
|
|
1541
|
-
dutchArtworkCode: "dbo:dutchArtworkCode";
|
|
1542
|
-
dutchCOROPCode: "dbo:dutchCOROPCode";
|
|
1543
|
-
dutchMIPCode: "dbo:dutchMIPCode";
|
|
1544
|
-
dutchNAIdentifier: "dbo:dutchNAIdentifier";
|
|
1545
|
-
dutchPPNCode: "dbo:dutchPPNCode";
|
|
1546
|
-
dutchRKDCode: "dbo:dutchRKDCode";
|
|
1547
|
-
dutchWinkelID: "dbo:dutchWinkelID";
|
|
1548
|
-
dynasty: "dbo:dynasty";
|
|
1549
|
-
eMedicineSubject: "dbo:eMedicineSubject";
|
|
1550
|
-
eMedicineTopic: "dbo:eMedicineTopic";
|
|
1551
|
-
eTeatrId: "dbo:eTeatrId";
|
|
1552
|
-
eastPlace: "dbo:eastPlace";
|
|
1553
|
-
ecNumber: "dbo:ecNumber";
|
|
1554
|
-
editing: "dbo:editing";
|
|
1555
|
-
editor: "dbo:editor";
|
|
1556
|
-
editorTitle: "dbo:editorTitle";
|
|
1557
|
-
education: "dbo:education";
|
|
1558
|
-
educationPlace: "dbo:educationPlace";
|
|
1559
|
-
educationSystem: "dbo:educationSystem";
|
|
1560
|
-
effectiveRadiatedPower: "dbo:effectiveRadiatedPower";
|
|
1561
|
-
egafdId: "dbo:egafdId";
|
|
1562
|
-
einecsNumber: "dbo:einecsNumber";
|
|
1563
|
-
ekatteCode: "dbo:ekatteCode";
|
|
1564
|
-
electionDate: "dbo:electionDate";
|
|
1565
|
-
electionDateLeader: "dbo:electionDateLeader";
|
|
1566
|
-
electionMajority: "dbo:electionMajority";
|
|
1567
|
-
elementAbove: "dbo:elementAbove";
|
|
1568
|
-
elementBlock: "dbo:elementBlock";
|
|
1569
|
-
elementGroup: "dbo:elementGroup";
|
|
1570
|
-
elementPeriod: "dbo:elementPeriod";
|
|
1571
|
-
elevation: "dbo:elevation";
|
|
1572
|
-
elevationQuote: "dbo:elevationQuote";
|
|
1573
|
-
elevatorCount: "dbo:elevatorCount";
|
|
1574
|
-
elo: "dbo:elo";
|
|
1575
|
-
eloRecord: "dbo:eloRecord";
|
|
1576
|
-
emblem: "dbo:emblem";
|
|
1577
|
-
emmyAward: "dbo:emmyAward";
|
|
1578
|
-
employer: "dbo:employer";
|
|
1579
|
-
employersCelebration: "dbo:employersCelebration";
|
|
1580
|
-
end: "dbo:end";
|
|
1581
|
-
endCareer: "dbo:endCareer";
|
|
1582
|
-
endDate: "dbo:endDate";
|
|
1583
|
-
endDateTime: "dbo:endDateTime";
|
|
1584
|
-
endOccupation: "dbo:endOccupation";
|
|
1585
|
-
endPoint: "dbo:endPoint";
|
|
1586
|
-
endReign: "dbo:endReign";
|
|
1587
|
-
endYear: "dbo:endYear";
|
|
1588
|
-
endYearOfInsertion: "dbo:endYearOfInsertion";
|
|
1589
|
-
endYearOfSales: "dbo:endYearOfSales";
|
|
1590
|
-
endangeredSince: "dbo:endangeredSince";
|
|
1591
|
-
endingTheme: "dbo:endingTheme";
|
|
1592
|
-
endowment: "dbo:endowment";
|
|
1593
|
-
enemy: "dbo:enemy";
|
|
1594
|
-
engine: "dbo:engine";
|
|
1595
|
-
enginePower: "dbo:enginePower";
|
|
1596
|
-
engineType: "dbo:engineType";
|
|
1597
|
-
engineer: "dbo:engineer";
|
|
1598
|
-
ensembl: "dbo:ensembl";
|
|
1599
|
-
enshrinedDeity: "dbo:enshrinedDeity";
|
|
1600
|
-
entourage: "dbo:entourage";
|
|
1601
|
-
entrezgene: "dbo:entrezgene";
|
|
1602
|
-
eparchy: "dbo:eparchy";
|
|
1603
|
-
episode: "dbo:episode";
|
|
1604
|
-
episodeNumber: "dbo:episodeNumber";
|
|
1605
|
-
epoch: "dbo:epoch";
|
|
1606
|
-
eptFinalTable: "dbo:eptFinalTable";
|
|
1607
|
-
eptItm: "dbo:eptItm";
|
|
1608
|
-
eptTitle: "dbo:eptTitle";
|
|
1609
|
-
equipment: "dbo:equipment";
|
|
1610
|
-
equity: "dbo:equity";
|
|
1611
|
-
era: "dbo:era";
|
|
1612
|
-
eruption: "dbo:eruption";
|
|
1613
|
-
eruptionYear: "dbo:eruptionYear";
|
|
1614
|
-
escalafon: "dbo:escalafon";
|
|
1615
|
-
escapeVelocity: "dbo:escapeVelocity";
|
|
1616
|
-
espnId: "dbo:espnId";
|
|
1617
|
-
established: "dbo:established";
|
|
1618
|
-
establishment: "dbo:establishment";
|
|
1619
|
-
ethnicGroup: "dbo:ethnicGroup";
|
|
1620
|
-
ethnicGroupsInYear: "dbo:ethnicGroupsInYear";
|
|
1621
|
-
ethnicity: "dbo:ethnicity";
|
|
1622
|
-
eurobabeIndexId: "dbo:eurobabeIndexId";
|
|
1623
|
-
europeanAffiliation: "dbo:europeanAffiliation";
|
|
1624
|
-
europeanChampionship: "dbo:europeanChampionship";
|
|
1625
|
-
europeanParliamentGroup: "dbo:europeanParliamentGroup";
|
|
1626
|
-
europeanUnionEntranceDate: "dbo:europeanUnionEntranceDate";
|
|
1627
|
-
event: "dbo:event";
|
|
1628
|
-
eventDate: "dbo:eventDate";
|
|
1629
|
-
eventDescription: "dbo:eventDescription";
|
|
1630
|
-
executiveHeadteacher: "dbo:executiveHeadteacher";
|
|
1631
|
-
executiveProducer: "dbo:executiveProducer";
|
|
1632
|
-
exhibition: "dbo:exhibition";
|
|
1633
|
-
existence: "dbo:existence";
|
|
1634
|
-
expedition: "dbo:expedition";
|
|
1635
|
-
explorer: "dbo:explorer";
|
|
1636
|
-
externalOrnament: "dbo:externalOrnament";
|
|
1637
|
-
extinctionDate: "dbo:extinctionDate";
|
|
1638
|
-
extinctionYear: "dbo:extinctionYear";
|
|
1639
|
-
eyeColor: "dbo:eyeColor";
|
|
1640
|
-
eyeColour: "dbo:eyeColour";
|
|
1641
|
-
eyes: "dbo:eyes";
|
|
1642
|
-
faaLocationIdentifier: "dbo:faaLocationIdentifier";
|
|
1643
|
-
facilityId: "dbo:facilityId";
|
|
1644
|
-
facultySize: "dbo:facultySize";
|
|
1645
|
-
failedLaunches: "dbo:failedLaunches";
|
|
1646
|
-
family: "dbo:family";
|
|
1647
|
-
familyMember: "dbo:familyMember";
|
|
1648
|
-
fansgroup: "dbo:fansgroup";
|
|
1649
|
-
fareZone: "dbo:fareZone";
|
|
1650
|
-
fastestDriver: "dbo:fastestDriver";
|
|
1651
|
-
fastestDriverCountry: "dbo:fastestDriverCountry";
|
|
1652
|
-
fastestDriverTeam: "dbo:fastestDriverTeam";
|
|
1653
|
-
fastestLap: "dbo:fastestLap";
|
|
1654
|
-
fat: "dbo:fat";
|
|
1655
|
-
fatalityRate: "dbo:fatalityRate";
|
|
1656
|
-
fate: "dbo:fate";
|
|
1657
|
-
father: "dbo:father";
|
|
1658
|
-
fauna: "dbo:fauna";
|
|
1659
|
-
fc: "dbo:fc";
|
|
1660
|
-
fcRuns: "dbo:fcRuns";
|
|
1661
|
-
fdaUniiCode: "dbo:fdaUniiCode";
|
|
1662
|
-
feastDay: "dbo:feastDay";
|
|
1663
|
-
feat: "dbo:feat";
|
|
1664
|
-
feature: "dbo:feature";
|
|
1665
|
-
features: "dbo:features";
|
|
1666
|
-
fedCup: "dbo:fedCup";
|
|
1667
|
-
federalState: "dbo:federalState";
|
|
1668
|
-
federation: "dbo:federation";
|
|
1669
|
-
fees: "dbo:fees";
|
|
1670
|
-
fibahof: "dbo:fibahof";
|
|
1671
|
-
field: "dbo:field";
|
|
1672
|
-
fight: "dbo:fight";
|
|
1673
|
-
fighter: "dbo:fighter";
|
|
1674
|
-
fileExtension: "dbo:fileExtension";
|
|
1675
|
-
fileSize: "dbo:fileSize";
|
|
1676
|
-
fileURL: "dbo:fileURL";
|
|
1677
|
-
filename: "dbo:filename";
|
|
1678
|
-
fillingStation: "dbo:fillingStation";
|
|
1679
|
-
film: "dbo:film";
|
|
1680
|
-
filmAudioType: "dbo:filmAudioType";
|
|
1681
|
-
filmColourType: "dbo:filmColourType";
|
|
1682
|
-
filmFareAward: "dbo:filmFareAward";
|
|
1683
|
-
filmNumber: "dbo:filmNumber";
|
|
1684
|
-
filmPolskiId: "dbo:filmPolskiId";
|
|
1685
|
-
filmRuntime: "dbo:filmRuntime";
|
|
1686
|
-
filmVersion: "dbo:filmVersion";
|
|
1687
|
-
finalFlight: "dbo:finalFlight";
|
|
1688
|
-
finalLost: "dbo:finalLost";
|
|
1689
|
-
finalLostDouble: "dbo:finalLostDouble";
|
|
1690
|
-
finalLostSingle: "dbo:finalLostSingle";
|
|
1691
|
-
finalLostTeam: "dbo:finalLostTeam";
|
|
1692
|
-
finalPublicationDate: "dbo:finalPublicationDate";
|
|
1693
|
-
finalPublicationYear: "dbo:finalPublicationYear";
|
|
1694
|
-
fipsCode: "dbo:fipsCode";
|
|
1695
|
-
firstAirDate: "dbo:firstAirDate";
|
|
1696
|
-
firstAppearance: "dbo:firstAppearance";
|
|
1697
|
-
firstAscent: "dbo:firstAscent";
|
|
1698
|
-
firstAscentPerson: "dbo:firstAscentPerson";
|
|
1699
|
-
firstAscentYear: "dbo:firstAscentYear";
|
|
1700
|
-
firstBroadcast: "dbo:firstBroadcast";
|
|
1701
|
-
firstDriver: "dbo:firstDriver";
|
|
1702
|
-
firstDriverCountry: "dbo:firstDriverCountry";
|
|
1703
|
-
firstDriverTeam: "dbo:firstDriverTeam";
|
|
1704
|
-
firstFlight: "dbo:firstFlight";
|
|
1705
|
-
firstFlightEndDate: "dbo:firstFlightEndDate";
|
|
1706
|
-
firstFlightStartDate: "dbo:firstFlightStartDate";
|
|
1707
|
-
firstGame: "dbo:firstGame";
|
|
1708
|
-
firstLaunch: "dbo:firstLaunch";
|
|
1709
|
-
firstLaunchDate: "dbo:firstLaunchDate";
|
|
1710
|
-
firstLaunchRocket: "dbo:firstLaunchRocket";
|
|
1711
|
-
firstLeader: "dbo:firstLeader";
|
|
1712
|
-
firstMention: "dbo:firstMention";
|
|
1713
|
-
firstOlympicEvent: "dbo:firstOlympicEvent";
|
|
1714
|
-
firstOwner: "dbo:firstOwner";
|
|
1715
|
-
firstPlace: "dbo:firstPlace";
|
|
1716
|
-
firstPopularVote: "dbo:firstPopularVote";
|
|
1717
|
-
firstProMatch: "dbo:firstProMatch";
|
|
1718
|
-
firstPublicationDate: "dbo:firstPublicationDate";
|
|
1719
|
-
firstPublicationYear: "dbo:firstPublicationYear";
|
|
1720
|
-
firstPublisher: "dbo:firstPublisher";
|
|
1721
|
-
firstRace: "dbo:firstRace";
|
|
1722
|
-
firstWin: "dbo:firstWin";
|
|
1723
|
-
firstWinner: "dbo:firstWinner";
|
|
1724
|
-
flag: "dbo:flag";
|
|
1725
|
-
flagBearer: "dbo:flagBearer";
|
|
1726
|
-
flagBorder: "dbo:flagBorder";
|
|
1727
|
-
flagCaption: "dbo:flagCaption";
|
|
1728
|
-
flagLink: "dbo:flagLink";
|
|
1729
|
-
flagSize: "dbo:flagSize";
|
|
1730
|
-
flashPoint: "dbo:flashPoint";
|
|
1731
|
-
floodingDate: "dbo:floodingDate";
|
|
1732
|
-
floorArea: "dbo:floorArea";
|
|
1733
|
-
floorCount: "dbo:floorCount";
|
|
1734
|
-
flora: "dbo:flora";
|
|
1735
|
-
flower: "dbo:flower";
|
|
1736
|
-
flyingHours: "dbo:flyingHours";
|
|
1737
|
-
foalDate: "dbo:foalDate";
|
|
1738
|
-
focus: "dbo:focus";
|
|
1739
|
-
followedBy: "dbo:followedBy";
|
|
1740
|
-
followingEvent: "dbo:followingEvent";
|
|
1741
|
-
follows: "dbo:follows";
|
|
1742
|
-
foot: "dbo:foot";
|
|
1743
|
-
footedness: "dbo:footedness";
|
|
1744
|
-
forces: "dbo:forces";
|
|
1745
|
-
foresterDistrict: "dbo:foresterDistrict";
|
|
1746
|
-
formationDate: "dbo:formationDate";
|
|
1747
|
-
formationYear: "dbo:formationYear";
|
|
1748
|
-
formerBandMember: "dbo:formerBandMember";
|
|
1749
|
-
formerBroadcastNetwork: "dbo:formerBroadcastNetwork";
|
|
1750
|
-
formerCallsign: "dbo:formerCallsign";
|
|
1751
|
-
formerChannel: "dbo:formerChannel";
|
|
1752
|
-
formerChoreographer: "dbo:formerChoreographer";
|
|
1753
|
-
formerCoach: "dbo:formerCoach";
|
|
1754
|
-
formerHighschool: "dbo:formerHighschool";
|
|
1755
|
-
formerName: "dbo:formerName";
|
|
1756
|
-
formerPartner: "dbo:formerPartner";
|
|
1757
|
-
formerTeam: "dbo:formerTeam";
|
|
1758
|
-
formula: "dbo:formula";
|
|
1759
|
-
fossil: "dbo:fossil";
|
|
1760
|
-
foundation: "dbo:foundation";
|
|
1761
|
-
foundationPlace: "dbo:foundationPlace";
|
|
1762
|
-
foundedBy: "dbo:foundedBy";
|
|
1763
|
-
founder: "dbo:founder";
|
|
1764
|
-
foundingDate: "dbo:foundingDate";
|
|
1765
|
-
foundingYear: "dbo:foundingYear";
|
|
1766
|
-
fourthCommander: "dbo:fourthCommander";
|
|
1767
|
-
frazioni: "dbo:frazioni";
|
|
1768
|
-
free: "dbo:free";
|
|
1769
|
-
freeDanseScore: "dbo:freeDanseScore";
|
|
1770
|
-
freeFlightTime: "dbo:freeFlightTime";
|
|
1771
|
-
freeLabel: "dbo:freeLabel";
|
|
1772
|
-
freeProgCompetition: "dbo:freeProgCompetition";
|
|
1773
|
-
freeProgScore: "dbo:freeProgScore";
|
|
1774
|
-
freeScoreCompetition: "dbo:freeScoreCompetition";
|
|
1775
|
-
frequency: "dbo:frequency";
|
|
1776
|
-
frequencyOfPublication: "dbo:frequencyOfPublication";
|
|
1777
|
-
frequentlyUpdated: "dbo:frequentlyUpdated";
|
|
1778
|
-
friend: "dbo:friend";
|
|
1779
|
-
frontierLength: "dbo:frontierLength";
|
|
1780
|
-
frozen: "dbo:frozen";
|
|
1781
|
-
fuel: "dbo:fuel";
|
|
1782
|
-
fuelCapacity: "dbo:fuelCapacity";
|
|
1783
|
-
fuelConsumption: "dbo:fuelConsumption";
|
|
1784
|
-
fuelSystem: "dbo:fuelSystem";
|
|
1785
|
-
fuelType: "dbo:fuelType";
|
|
1786
|
-
fuelTypeName: "dbo:fuelTypeName";
|
|
1787
|
-
fullCompetition: "dbo:fullCompetition";
|
|
1788
|
-
fullScore: "dbo:fullScore";
|
|
1789
|
-
functionEndDate: "dbo:functionEndDate";
|
|
1790
|
-
functionEndYear: "dbo:functionEndYear";
|
|
1791
|
-
functionStartDate: "dbo:functionStartDate";
|
|
1792
|
-
functionStartYear: "dbo:functionStartYear";
|
|
1793
|
-
fundedBy: "dbo:fundedBy";
|
|
1794
|
-
galicianSpeakersDate: "dbo:galicianSpeakersDate";
|
|
1795
|
-
galicianSpeakersPercentage: "dbo:galicianSpeakersPercentage";
|
|
1796
|
-
galleryItem: "dbo:galleryItem";
|
|
1797
|
-
gameArtist: "dbo:gameArtist";
|
|
1798
|
-
gameEngine: "dbo:gameEngine";
|
|
1799
|
-
gameModus: "dbo:gameModus";
|
|
1800
|
-
games: "dbo:games";
|
|
1801
|
-
garrison: "dbo:garrison";
|
|
1802
|
-
gasChambers: "dbo:gasChambers";
|
|
1803
|
-
gaudiAward: "dbo:gaudiAward";
|
|
1804
|
-
gdpPerCapita: "dbo:gdpPerCapita";
|
|
1805
|
-
geminiAward: "dbo:geminiAward";
|
|
1806
|
-
gender: "dbo:gender";
|
|
1807
|
-
geneLocation: "dbo:geneLocation";
|
|
1808
|
-
geneLocationEnd: "dbo:geneLocationEnd";
|
|
1809
|
-
geneLocationStart: "dbo:geneLocationStart";
|
|
1810
|
-
geneReviewsId: "dbo:geneReviewsId";
|
|
1811
|
-
geneReviewsName: "dbo:geneReviewsName";
|
|
1812
|
-
generalCouncil: "dbo:generalCouncil";
|
|
1813
|
-
generalManager: "dbo:generalManager";
|
|
1814
|
-
generationUnits: "dbo:generationUnits";
|
|
1815
|
-
genomeDB: "dbo:genomeDB";
|
|
1816
|
-
genre: "dbo:genre";
|
|
1817
|
-
genus: "dbo:genus";
|
|
1818
|
-
geolocDepartment: "dbo:geolocDepartment";
|
|
1819
|
-
geolocDual: "dbo:geolocDual";
|
|
1820
|
-
geologicPeriod: "dbo:geologicPeriod";
|
|
1821
|
-
geology: "dbo:geology";
|
|
1822
|
-
giniCoefficient: "dbo:giniCoefficient";
|
|
1823
|
-
giniCoefficientAsOf: "dbo:giniCoefficientAsOf";
|
|
1824
|
-
giniCoefficientCategory: "dbo:giniCoefficientCategory";
|
|
1825
|
-
giniCoefficientRanking: "dbo:giniCoefficientRanking";
|
|
1826
|
-
glycemicIndex: "dbo:glycemicIndex";
|
|
1827
|
-
gnisCode: "dbo:gnisCode";
|
|
1828
|
-
gnl: "dbo:gnl";
|
|
1829
|
-
goalsInLeague: "dbo:goalsInLeague";
|
|
1830
|
-
goalsInNationalTeam: "dbo:goalsInNationalTeam";
|
|
1831
|
-
goldMedalDouble: "dbo:goldMedalDouble";
|
|
1832
|
-
goldMedalMixed: "dbo:goldMedalMixed";
|
|
1833
|
-
goldMedalSingle: "dbo:goldMedalSingle";
|
|
1834
|
-
goldMedalist: "dbo:goldMedalist";
|
|
1835
|
-
goldenCalfAward: "dbo:goldenCalfAward";
|
|
1836
|
-
goldenGlobeAward: "dbo:goldenGlobeAward";
|
|
1837
|
-
goldenRaspberryAward: "dbo:goldenRaspberryAward";
|
|
1838
|
-
governingBody: "dbo:governingBody";
|
|
1839
|
-
government: "dbo:government";
|
|
1840
|
-
governmentCountry: "dbo:governmentCountry";
|
|
1841
|
-
governmentElevation: "dbo:governmentElevation";
|
|
1842
|
-
governmentMountain: "dbo:governmentMountain";
|
|
1843
|
-
governmentPlace: "dbo:governmentPlace";
|
|
1844
|
-
governmentPosition: "dbo:governmentPosition";
|
|
1845
|
-
governmentRegion: "dbo:governmentRegion";
|
|
1846
|
-
governmentType: "dbo:governmentType";
|
|
1847
|
-
governor: "dbo:governor";
|
|
1848
|
-
governorGeneral: "dbo:governorGeneral";
|
|
1849
|
-
governorate: "dbo:governorate";
|
|
1850
|
-
goyaAward: "dbo:goyaAward";
|
|
1851
|
-
gradName: "dbo:gradName";
|
|
1852
|
-
gradNum: "dbo:gradNum";
|
|
1853
|
-
grades: "dbo:grades";
|
|
1854
|
-
grammyAward: "dbo:grammyAward";
|
|
1855
|
-
grandsire: "dbo:grandsire";
|
|
1856
|
-
grave: "dbo:grave";
|
|
1857
|
-
grayPage: "dbo:grayPage";
|
|
1858
|
-
graySubject: "dbo:graySubject";
|
|
1859
|
-
greekName: "dbo:greekName";
|
|
1860
|
-
greenLongDistancePisteNumber: "dbo:greenLongDistancePisteNumber";
|
|
1861
|
-
greenSkiPisteNumber: "dbo:greenSkiPisteNumber";
|
|
1862
|
-
gridReference: "dbo:gridReference";
|
|
1863
|
-
grindingCapability: "dbo:grindingCapability";
|
|
1864
|
-
gross: "dbo:gross";
|
|
1865
|
-
grossDomesticProduct: "dbo:grossDomesticProduct";
|
|
1866
|
-
grossDomesticProductAsOf: "dbo:grossDomesticProductAsOf";
|
|
1867
|
-
grossDomesticProductNominalPerCapita: "dbo:grossDomesticProductNominalPerCapita";
|
|
1868
|
-
grossDomesticProductPerPeople: "dbo:grossDomesticProductPerPeople";
|
|
1869
|
-
grossDomesticProductPurchasingPowerParityPerCapita: "dbo:grossDomesticProductPurchasingPowerParityPerCapita";
|
|
1870
|
-
grossDomesticProductRank: "dbo:grossDomesticProductRank";
|
|
1871
|
-
ground: "dbo:ground";
|
|
1872
|
-
groundsForLiquidation: "dbo:groundsForLiquidation";
|
|
1873
|
-
groupCommemorated: "dbo:groupCommemorated";
|
|
1874
|
-
growingGrape: "dbo:growingGrape";
|
|
1875
|
-
guest: "dbo:guest";
|
|
1876
|
-
gun: "dbo:gun";
|
|
1877
|
-
gymApparatus: "dbo:gymApparatus";
|
|
1878
|
-
hairColor: "dbo:hairColor";
|
|
1879
|
-
hairColour: "dbo:hairColour";
|
|
1880
|
-
hairs: "dbo:hairs";
|
|
1881
|
-
hallOfFame: "dbo:hallOfFame";
|
|
1882
|
-
hand: "dbo:hand";
|
|
1883
|
-
handedness: "dbo:handedness";
|
|
1884
|
-
handisport: "dbo:handisport";
|
|
1885
|
-
hasAbsorbedMunicipality: "dbo:hasAbsorbedMunicipality";
|
|
1886
|
-
hasAnnotation: "dbo:hasAnnotation";
|
|
1887
|
-
hasChannel: "dbo:hasChannel";
|
|
1888
|
-
hasInput: "dbo:hasInput";
|
|
1889
|
-
hasInsidePlace: "dbo:hasInsidePlace";
|
|
1890
|
-
hasJunctionWith: "dbo:hasJunctionWith";
|
|
1891
|
-
hasKMLData: "dbo:hasKMLData";
|
|
1892
|
-
hasNaturalBust: "dbo:hasNaturalBust";
|
|
1893
|
-
hasOutsidePlace: "dbo:hasOutsidePlace";
|
|
1894
|
-
hasSurfaceForm: "dbo:hasSurfaceForm";
|
|
1895
|
-
hasVariant: "dbo:hasVariant";
|
|
1896
|
-
head: "dbo:head";
|
|
1897
|
-
headAlloy: "dbo:headAlloy";
|
|
1898
|
-
headChef: "dbo:headChef";
|
|
1899
|
-
headLabel: "dbo:headLabel";
|
|
1900
|
-
headOfFamily: "dbo:headOfFamily";
|
|
1901
|
-
headquarter: "dbo:headquarter";
|
|
1902
|
-
headteacher: "dbo:headteacher";
|
|
1903
|
-
height: "dbo:height";
|
|
1904
|
-
heightAboveAverageTerrain: "dbo:heightAboveAverageTerrain";
|
|
1905
|
-
heightAgainst: "dbo:heightAgainst";
|
|
1906
|
-
heightAttack: "dbo:heightAttack";
|
|
1907
|
-
heir: "dbo:heir";
|
|
1908
|
-
heisman: "dbo:heisman";
|
|
1909
|
-
heritageRegister: "dbo:heritageRegister";
|
|
1910
|
-
hgncid: "dbo:hgncid";
|
|
1911
|
-
highest: "dbo:highest";
|
|
1912
|
-
highestAltitude: "dbo:highestAltitude";
|
|
1913
|
-
highestBreak: "dbo:highestBreak";
|
|
1914
|
-
highestBuildingInYear: "dbo:highestBuildingInYear";
|
|
1915
|
-
highestMountain: "dbo:highestMountain";
|
|
1916
|
-
highestPlace: "dbo:highestPlace";
|
|
1917
|
-
highestPoint: "dbo:highestPoint";
|
|
1918
|
-
highestPointIsland: "dbo:highestPointIsland";
|
|
1919
|
-
highestPosition: "dbo:highestPosition";
|
|
1920
|
-
highestRank: "dbo:highestRank";
|
|
1921
|
-
highestRegion: "dbo:highestRegion";
|
|
1922
|
-
highestState: "dbo:highestState";
|
|
1923
|
-
highschool: "dbo:highschool";
|
|
1924
|
-
highwaySystem: "dbo:highwaySystem";
|
|
1925
|
-
hipSize: "dbo:hipSize";
|
|
1926
|
-
historicalMap: "dbo:historicalMap";
|
|
1927
|
-
historicalName: "dbo:historicalName";
|
|
1928
|
-
historicalRegion: "dbo:historicalRegion";
|
|
1929
|
-
hof: "dbo:hof";
|
|
1930
|
-
homage: "dbo:homage";
|
|
1931
|
-
homeArena: "dbo:homeArena";
|
|
1932
|
-
homeColourHexCode: "dbo:homeColourHexCode";
|
|
1933
|
-
homeStadium: "dbo:homeStadium";
|
|
1934
|
-
homeport: "dbo:homeport";
|
|
1935
|
-
hometown: "dbo:hometown";
|
|
1936
|
-
honours: "dbo:honours";
|
|
1937
|
-
hopmanCup: "dbo:hopmanCup";
|
|
1938
|
-
horseRidingDiscipline: "dbo:horseRidingDiscipline";
|
|
1939
|
-
house: "dbo:house";
|
|
1940
|
-
hraState: "dbo:hraState";
|
|
1941
|
-
hsvCoordinateHue: "dbo:hsvCoordinateHue";
|
|
1942
|
-
hsvCoordinateSaturation: "dbo:hsvCoordinateSaturation";
|
|
1943
|
-
hsvCoordinateValue: "dbo:hsvCoordinateValue";
|
|
1944
|
-
hubAirport: "dbo:hubAirport";
|
|
1945
|
-
humanDevelopmentIndex: "dbo:humanDevelopmentIndex";
|
|
1946
|
-
humanDevelopmentIndexAsOf: "dbo:humanDevelopmentIndexAsOf";
|
|
1947
|
-
humanDevelopmentIndexRank: "dbo:humanDevelopmentIndexRank";
|
|
1948
|
-
humanDevelopmentIndexRankingCategory: "dbo:humanDevelopmentIndexRankingCategory";
|
|
1949
|
-
hybrid: "dbo:hybrid";
|
|
1950
|
-
iafdId: "dbo:iafdId";
|
|
1951
|
-
iataAirlineCode: "dbo:iataAirlineCode";
|
|
1952
|
-
iataLocationIdentifier: "dbo:iataLocationIdentifier";
|
|
1953
|
-
ibdbId: "dbo:ibdbId";
|
|
1954
|
-
icaoAirlineCode: "dbo:icaoAirlineCode";
|
|
1955
|
-
icaoLocationIdentifier: "dbo:icaoLocationIdentifier";
|
|
1956
|
-
icd1: "dbo:icd1";
|
|
1957
|
-
icd10: "dbo:icd10";
|
|
1958
|
-
icd9: "dbo:icd9";
|
|
1959
|
-
icdo: "dbo:icdo";
|
|
1960
|
-
iconographicAttributes: "dbo:iconographicAttributes";
|
|
1961
|
-
id: "dbo:id";
|
|
1962
|
-
idAllocine: "dbo:idAllocine";
|
|
1963
|
-
idNumber: "dbo:idNumber";
|
|
1964
|
-
identificationSymbol: "dbo:identificationSymbol";
|
|
1965
|
-
ideology: "dbo:ideology";
|
|
1966
|
-
iftaAward: "dbo:iftaAward";
|
|
1967
|
-
iihfHof: "dbo:iihfHof";
|
|
1968
|
-
illiteracy: "dbo:illiteracy";
|
|
1969
|
-
illustrator: "dbo:illustrator";
|
|
1970
|
-
imageSize: "dbo:imageSize";
|
|
1971
|
-
imdbId: "dbo:imdbId";
|
|
1972
|
-
impactFactor: "dbo:impactFactor";
|
|
1973
|
-
impactFactorAsOf: "dbo:impactFactorAsOf";
|
|
1974
|
-
importantStation: "dbo:importantStation";
|
|
1975
|
-
imposedDanseCompetition: "dbo:imposedDanseCompetition";
|
|
1976
|
-
imposedDanseScore: "dbo:imposedDanseScore";
|
|
1977
|
-
inCemetery: "dbo:inCemetery";
|
|
1978
|
-
inchi: "dbo:inchi";
|
|
1979
|
-
inclination: "dbo:inclination";
|
|
1980
|
-
income: "dbo:income";
|
|
1981
|
-
incumbent: "dbo:incumbent";
|
|
1982
|
-
individualisedGnd: "dbo:individualisedGnd";
|
|
1983
|
-
individualisedPnd: "dbo:individualisedPnd";
|
|
1984
|
-
industry: "dbo:industry";
|
|
1985
|
-
infantMortality: "dbo:infantMortality";
|
|
1986
|
-
inflow: "dbo:inflow";
|
|
1987
|
-
influenced: "dbo:influenced";
|
|
1988
|
-
influencedBy: "dbo:influencedBy";
|
|
1989
|
-
information: "dbo:information";
|
|
1990
|
-
informationName: "dbo:informationName";
|
|
1991
|
-
ingredient: "dbo:ingredient";
|
|
1992
|
-
ingredientName: "dbo:ingredientName";
|
|
1993
|
-
initiallyUsedFor: "dbo:initiallyUsedFor";
|
|
1994
|
-
inn: "dbo:inn";
|
|
1995
|
-
innervates: "dbo:innervates";
|
|
1996
|
-
inscription: "dbo:inscription";
|
|
1997
|
-
inseeCode: "dbo:inseeCode";
|
|
1998
|
-
installedCapacity: "dbo:installedCapacity";
|
|
1999
|
-
institution: "dbo:institution";
|
|
2000
|
-
instrument: "dbo:instrument";
|
|
2001
|
-
intercommunality: "dbo:intercommunality";
|
|
2002
|
-
interest: "dbo:interest";
|
|
2003
|
-
internationalAffiliation: "dbo:internationalAffiliation";
|
|
2004
|
-
internationalPhonePrefix: "dbo:internationalPhonePrefix";
|
|
2005
|
-
internationalPhonePrefixLabel: "dbo:internationalPhonePrefixLabel";
|
|
2006
|
-
internationally: "dbo:internationally";
|
|
2007
|
-
introduced: "dbo:introduced";
|
|
2008
|
-
introductionDate: "dbo:introductionDate";
|
|
2009
|
-
iobdbId: "dbo:iobdbId";
|
|
2010
|
-
isCityState: "dbo:isCityState";
|
|
2011
|
-
isHandicappedAccessible: "dbo:isHandicappedAccessible";
|
|
2012
|
-
isPartOf: "dbo:isPartOf";
|
|
2013
|
-
isPartOfAnatomicalStructure: "dbo:isPartOfAnatomicalStructure";
|
|
2014
|
-
isPartOfMilitaryConflict: "dbo:isPartOfMilitaryConflict";
|
|
2015
|
-
isPartOfName: "dbo:isPartOfName";
|
|
2016
|
-
isPartOfWineRegion: "dbo:isPartOfWineRegion";
|
|
2017
|
-
isPeerReviewed: "dbo:isPeerReviewed";
|
|
2018
|
-
isRouteStop: "dbo:isRouteStop";
|
|
2019
|
-
isbn: "dbo:isbn";
|
|
2020
|
-
isil: "dbo:isil";
|
|
2021
|
-
island: "dbo:island";
|
|
2022
|
-
isniId: "dbo:isniId";
|
|
2023
|
-
iso31661Code: "dbo:iso31661Code";
|
|
2024
|
-
iso6391Code: "dbo:iso6391Code";
|
|
2025
|
-
iso6392Code: "dbo:iso6392Code";
|
|
2026
|
-
iso6393Code: "dbo:iso6393Code";
|
|
2027
|
-
isoCode: "dbo:isoCode";
|
|
2028
|
-
isoCodeRegion: "dbo:isoCodeRegion";
|
|
2029
|
-
issDockings: "dbo:issDockings";
|
|
2030
|
-
issn: "dbo:issn";
|
|
2031
|
-
ist: "dbo:ist";
|
|
2032
|
-
istat: "dbo:istat";
|
|
2033
|
-
ithfDate: "dbo:ithfDate";
|
|
2034
|
-
iucnCategory: "dbo:iucnCategory";
|
|
2035
|
-
iupacName: "dbo:iupacName";
|
|
2036
|
-
jockey: "dbo:jockey";
|
|
2037
|
-
jointCommunity: "dbo:jointCommunity";
|
|
2038
|
-
jstor: "dbo:jstor";
|
|
2039
|
-
judge: "dbo:judge";
|
|
2040
|
-
juniorSeason: "dbo:juniorSeason";
|
|
2041
|
-
juniorTeam: "dbo:juniorTeam";
|
|
2042
|
-
juniorYearsEndYear: "dbo:juniorYearsEndYear";
|
|
2043
|
-
juniorYearsStartYear: "dbo:juniorYearsStartYear";
|
|
2044
|
-
jureLanguage: "dbo:jureLanguage";
|
|
2045
|
-
jurisdiction: "dbo:jurisdiction";
|
|
2046
|
-
jutsu: "dbo:jutsu";
|
|
2047
|
-
kegg: "dbo:kegg";
|
|
2048
|
-
keyPerson: "dbo:keyPerson";
|
|
2049
|
-
khlDraft: "dbo:khlDraft";
|
|
2050
|
-
khlDraftTeam: "dbo:khlDraftTeam";
|
|
2051
|
-
khlDraftYear: "dbo:khlDraftYear";
|
|
2052
|
-
killedBy: "dbo:killedBy";
|
|
2053
|
-
kinOfLanguage: "dbo:kinOfLanguage";
|
|
2054
|
-
kindOfCoordinate: "dbo:kindOfCoordinate";
|
|
2055
|
-
kindOfCriminal: "dbo:kindOfCriminal";
|
|
2056
|
-
kindOfCriminalAction: "dbo:kindOfCriminalAction";
|
|
2057
|
-
kindOfRock: "dbo:kindOfRock";
|
|
2058
|
-
kingdom: "dbo:kingdom";
|
|
2059
|
-
knownFor: "dbo:knownFor";
|
|
2060
|
-
ko: "dbo:ko";
|
|
2061
|
-
lahHof: "dbo:lahHof";
|
|
2062
|
-
lake: "dbo:lake";
|
|
2063
|
-
land: "dbo:land";
|
|
2064
|
-
landArea: "dbo:landArea";
|
|
2065
|
-
landPercentage: "dbo:landPercentage";
|
|
2066
|
-
landRegistryCode: "dbo:landRegistryCode";
|
|
2067
|
-
landeshauptmann: "dbo:landeshauptmann";
|
|
2068
|
-
landingDate: "dbo:landingDate";
|
|
2069
|
-
landingSite: "dbo:landingSite";
|
|
2070
|
-
landingVehicle: "dbo:landingVehicle";
|
|
2071
|
-
landskap: "dbo:landskap";
|
|
2072
|
-
landtag: "dbo:landtag";
|
|
2073
|
-
landtagMandate: "dbo:landtagMandate";
|
|
2074
|
-
languageCode: "dbo:languageCode";
|
|
2075
|
-
languageFamily: "dbo:languageFamily";
|
|
2076
|
-
languageRegulator: "dbo:languageRegulator";
|
|
2077
|
-
largestCity: "dbo:largestCity";
|
|
2078
|
-
largestMetro: "dbo:largestMetro";
|
|
2079
|
-
largestSettlement: "dbo:largestSettlement";
|
|
2080
|
-
largestWin: "dbo:largestWin";
|
|
2081
|
-
lastAirDate: "dbo:lastAirDate";
|
|
2082
|
-
lastAppearance: "dbo:lastAppearance";
|
|
2083
|
-
lastElectionDate: "dbo:lastElectionDate";
|
|
2084
|
-
lastFamilyMember: "dbo:lastFamilyMember";
|
|
2085
|
-
lastFlight: "dbo:lastFlight";
|
|
2086
|
-
lastFlightEndDate: "dbo:lastFlightEndDate";
|
|
2087
|
-
lastFlightStartDate: "dbo:lastFlightStartDate";
|
|
2088
|
-
lastLaunch: "dbo:lastLaunch";
|
|
2089
|
-
lastLaunchDate: "dbo:lastLaunchDate";
|
|
2090
|
-
lastLaunchRocket: "dbo:lastLaunchRocket";
|
|
2091
|
-
lastPosition: "dbo:lastPosition";
|
|
2092
|
-
lastProMatch: "dbo:lastProMatch";
|
|
2093
|
-
lastPublicationDate: "dbo:lastPublicationDate";
|
|
2094
|
-
lastRace: "dbo:lastRace";
|
|
2095
|
-
lastSeason: "dbo:lastSeason";
|
|
2096
|
-
lastWin: "dbo:lastWin";
|
|
2097
|
-
laterality: "dbo:laterality";
|
|
2098
|
-
latestElection: "dbo:latestElection";
|
|
2099
|
-
latestPreviewDate: "dbo:latestPreviewDate";
|
|
2100
|
-
latestPreviewVersion: "dbo:latestPreviewVersion";
|
|
2101
|
-
latestReleaseDate: "dbo:latestReleaseDate";
|
|
2102
|
-
latestReleaseVersion: "dbo:latestReleaseVersion";
|
|
2103
|
-
latinName: "dbo:latinName";
|
|
2104
|
-
launch: "dbo:launch";
|
|
2105
|
-
launchDate: "dbo:launchDate";
|
|
2106
|
-
launchPad: "dbo:launchPad";
|
|
2107
|
-
launchSite: "dbo:launchSite";
|
|
2108
|
-
launchVehicle: "dbo:launchVehicle";
|
|
2109
|
-
launches: "dbo:launches";
|
|
2110
|
-
laurenceOlivierAward: "dbo:laurenceOlivierAward";
|
|
2111
|
-
lawCountry: "dbo:lawCountry";
|
|
2112
|
-
layingDown: "dbo:layingDown";
|
|
2113
|
-
layout: "dbo:layout";
|
|
2114
|
-
lcc: "dbo:lcc";
|
|
2115
|
-
lccn: "dbo:lccn";
|
|
2116
|
-
lccnId: "dbo:lccnId";
|
|
2117
|
-
lchfDraft: "dbo:lchfDraft";
|
|
2118
|
-
lchfDraftTeam: "dbo:lchfDraftTeam";
|
|
2119
|
-
lchfDraftYear: "dbo:lchfDraftYear";
|
|
2120
|
-
leadTeam: "dbo:leadTeam";
|
|
2121
|
-
leadYear: "dbo:leadYear";
|
|
2122
|
-
leader: "dbo:leader";
|
|
2123
|
-
leaderFunction: "dbo:leaderFunction";
|
|
2124
|
-
leaderName: "dbo:leaderName";
|
|
2125
|
-
leaderParty: "dbo:leaderParty";
|
|
2126
|
-
leaderTitle: "dbo:leaderTitle";
|
|
2127
|
-
leadership: "dbo:leadership";
|
|
2128
|
-
league: "dbo:league";
|
|
2129
|
-
leagueManager: "dbo:leagueManager";
|
|
2130
|
-
leftChild: "dbo:leftChild";
|
|
2131
|
-
leftTributary: "dbo:leftTributary";
|
|
2132
|
-
legalArrondissement: "dbo:legalArrondissement";
|
|
2133
|
-
legalArticle: "dbo:legalArticle";
|
|
2134
|
-
legalForm: "dbo:legalForm";
|
|
2135
|
-
legislativePeriodName: "dbo:legislativePeriodName";
|
|
2136
|
-
legislature: "dbo:legislature";
|
|
2137
|
-
lengthQuote: "dbo:lengthQuote";
|
|
2138
|
-
lengthReference: "dbo:lengthReference";
|
|
2139
|
-
lethalOnChickens: "dbo:lethalOnChickens";
|
|
2140
|
-
lethalOnMice: "dbo:lethalOnMice";
|
|
2141
|
-
lethalOnRabbits: "dbo:lethalOnRabbits";
|
|
2142
|
-
lethalOnRats: "dbo:lethalOnRats";
|
|
2143
|
-
liberationDate: "dbo:liberationDate";
|
|
2144
|
-
libretto: "dbo:libretto";
|
|
2145
|
-
licenceLetter: "dbo:licenceLetter";
|
|
2146
|
-
licenceNumber: "dbo:licenceNumber";
|
|
2147
|
-
licenceNumberLabel: "dbo:licenceNumberLabel";
|
|
2148
|
-
license: "dbo:license";
|
|
2149
|
-
licensee: "dbo:licensee";
|
|
2150
|
-
lieutenancy: "dbo:lieutenancy";
|
|
2151
|
-
lieutenancyArea: "dbo:lieutenancyArea";
|
|
2152
|
-
lieutenant: "dbo:lieutenant";
|
|
2153
|
-
lifeExpectancy: "dbo:lifeExpectancy";
|
|
2154
|
-
limit: "dbo:limit";
|
|
2155
|
-
lineLength: "dbo:lineLength";
|
|
2156
|
-
linguisticsTradition: "dbo:linguisticsTradition";
|
|
2157
|
-
linkedSpace: "dbo:linkedSpace";
|
|
2158
|
-
linkedTo: "dbo:linkedTo";
|
|
2159
|
-
listItemOf: "dbo:listItemOf";
|
|
2160
|
-
literaryGenre: "dbo:literaryGenre";
|
|
2161
|
-
littlePoolRecord: "dbo:littlePoolRecord";
|
|
2162
|
-
livingPlace: "dbo:livingPlace";
|
|
2163
|
-
loadLimit: "dbo:loadLimit";
|
|
2164
|
-
localAuthority: "dbo:localAuthority";
|
|
2165
|
-
localPhonePrefix: "dbo:localPhonePrefix";
|
|
2166
|
-
locality: "dbo:locality";
|
|
2167
|
-
localization: "dbo:localization";
|
|
2168
|
-
localizationThumbnail: "dbo:localizationThumbnail";
|
|
2169
|
-
localizationThumbnailCaption: "dbo:localizationThumbnailCaption";
|
|
2170
|
-
locatedInArea: "dbo:locatedInArea";
|
|
2171
|
-
location: "dbo:location";
|
|
2172
|
-
locationCity: "dbo:locationCity";
|
|
2173
|
-
locationCountry: "dbo:locationCountry";
|
|
2174
|
-
locationIdentifier: "dbo:locationIdentifier";
|
|
2175
|
-
locationName: "dbo:locationName";
|
|
2176
|
-
locomotive: "dbo:locomotive";
|
|
2177
|
-
locusSupplementaryData: "dbo:locusSupplementaryData";
|
|
2178
|
-
logo: "dbo:logo";
|
|
2179
|
-
longDistancePisteKilometre: "dbo:longDistancePisteKilometre";
|
|
2180
|
-
longDistancePisteNumber: "dbo:longDistancePisteNumber";
|
|
2181
|
-
longName: "dbo:longName";
|
|
2182
|
-
longtype: "dbo:longtype";
|
|
2183
|
-
lounge: "dbo:lounge";
|
|
2184
|
-
lowerAge: "dbo:lowerAge";
|
|
2185
|
-
lowerEarthOrbitPayload: "dbo:lowerEarthOrbitPayload";
|
|
2186
|
-
lowest: "dbo:lowest";
|
|
2187
|
-
lowestAltitude: "dbo:lowestAltitude";
|
|
2188
|
-
lowestMountain: "dbo:lowestMountain";
|
|
2189
|
-
lowestPlace: "dbo:lowestPlace";
|
|
2190
|
-
lowestPoint: "dbo:lowestPoint";
|
|
2191
|
-
lowestPosition: "dbo:lowestPosition";
|
|
2192
|
-
lowestRegion: "dbo:lowestRegion";
|
|
2193
|
-
lowestState: "dbo:lowestState";
|
|
2194
|
-
lunarEvaTime: "dbo:lunarEvaTime";
|
|
2195
|
-
lunarLandingSite: "dbo:lunarLandingSite";
|
|
2196
|
-
lunarModule: "dbo:lunarModule";
|
|
2197
|
-
lunarOrbitTime: "dbo:lunarOrbitTime";
|
|
2198
|
-
lunarRover: "dbo:lunarRover";
|
|
2199
|
-
lunarSampleMass: "dbo:lunarSampleMass";
|
|
2200
|
-
lunarSurfaceTime: "dbo:lunarSurfaceTime";
|
|
2201
|
-
lymph: "dbo:lymph";
|
|
2202
|
-
lyrics: "dbo:lyrics";
|
|
2203
|
-
magazine: "dbo:magazine";
|
|
2204
|
-
maidenFlight: "dbo:maidenFlight";
|
|
2205
|
-
maidenFlightRocket: "dbo:maidenFlightRocket";
|
|
2206
|
-
maidenVoyage: "dbo:maidenVoyage";
|
|
2207
|
-
mainArticleForCategory: "dbo:mainArticleForCategory";
|
|
2208
|
-
mainBuilding: "dbo:mainBuilding";
|
|
2209
|
-
mainCharacter: "dbo:mainCharacter";
|
|
2210
|
-
mainDomain: "dbo:mainDomain";
|
|
2211
|
-
mainFamilyBranch: "dbo:mainFamilyBranch";
|
|
2212
|
-
mainInterest: "dbo:mainInterest";
|
|
2213
|
-
mainIsland: "dbo:mainIsland";
|
|
2214
|
-
mainIslands: "dbo:mainIslands";
|
|
2215
|
-
mainOrgan: "dbo:mainOrgan";
|
|
2216
|
-
mainspan: "dbo:mainspan";
|
|
2217
|
-
maintainedBy: "dbo:maintainedBy";
|
|
2218
|
-
majorIsland: "dbo:majorIsland";
|
|
2219
|
-
majorShrine: "dbo:majorShrine";
|
|
2220
|
-
majorityFloorLeader: "dbo:majorityFloorLeader";
|
|
2221
|
-
majorityLeader: "dbo:majorityLeader";
|
|
2222
|
-
makeupArtist: "dbo:makeupArtist";
|
|
2223
|
-
management: "dbo:management";
|
|
2224
|
-
managementCountry: "dbo:managementCountry";
|
|
2225
|
-
managementElevation: "dbo:managementElevation";
|
|
2226
|
-
managementMountain: "dbo:managementMountain";
|
|
2227
|
-
managementPlace: "dbo:managementPlace";
|
|
2228
|
-
managementPosition: "dbo:managementPosition";
|
|
2229
|
-
managementRegion: "dbo:managementRegion";
|
|
2230
|
-
manager: "dbo:manager";
|
|
2231
|
-
managerClub: "dbo:managerClub";
|
|
2232
|
-
managerSeason: "dbo:managerSeason";
|
|
2233
|
-
managerTitle: "dbo:managerTitle";
|
|
2234
|
-
managerYears: "dbo:managerYears";
|
|
2235
|
-
managerYearsEndYear: "dbo:managerYearsEndYear";
|
|
2236
|
-
managerYearsStartYear: "dbo:managerYearsStartYear";
|
|
2237
|
-
managingEditor: "dbo:managingEditor";
|
|
2238
|
-
mandate: "dbo:mandate";
|
|
2239
|
-
manufactory: "dbo:manufactory";
|
|
2240
|
-
manufacturer: "dbo:manufacturer";
|
|
2241
|
-
mapCaption: "dbo:mapCaption";
|
|
2242
|
-
mapDescription: "dbo:mapDescription";
|
|
2243
|
-
march: "dbo:march";
|
|
2244
|
-
marketCapitalisation: "dbo:marketCapitalisation";
|
|
2245
|
-
mascot: "dbo:mascot";
|
|
2246
|
-
mass: "dbo:mass";
|
|
2247
|
-
massif: "dbo:massif";
|
|
2248
|
-
mastersWins: "dbo:mastersWins";
|
|
2249
|
-
matchPoint: "dbo:matchPoint";
|
|
2250
|
-
material: "dbo:material";
|
|
2251
|
-
max: "dbo:max";
|
|
2252
|
-
maxAbsoluteMagnitude: "dbo:maxAbsoluteMagnitude";
|
|
2253
|
-
maxApparentMagnitude: "dbo:maxApparentMagnitude";
|
|
2254
|
-
maxTime: "dbo:maxTime";
|
|
2255
|
-
maximumArea: "dbo:maximumArea";
|
|
2256
|
-
maximumAreaQuote: "dbo:maximumAreaQuote";
|
|
2257
|
-
maximumBoatBeam: "dbo:maximumBoatBeam";
|
|
2258
|
-
maximumBoatLength: "dbo:maximumBoatLength";
|
|
2259
|
-
maximumDepth: "dbo:maximumDepth";
|
|
2260
|
-
maximumDepthQuote: "dbo:maximumDepthQuote";
|
|
2261
|
-
maximumDischarge: "dbo:maximumDischarge";
|
|
2262
|
-
maximumElevation: "dbo:maximumElevation";
|
|
2263
|
-
maximumInclination: "dbo:maximumInclination";
|
|
2264
|
-
maximumTemperature: "dbo:maximumTemperature";
|
|
2265
|
-
mayor: "dbo:mayor";
|
|
2266
|
-
mayorArticle: "dbo:mayorArticle";
|
|
2267
|
-
mayorCouncillor: "dbo:mayorCouncillor";
|
|
2268
|
-
mayorFunction: "dbo:mayorFunction";
|
|
2269
|
-
mayorMandate: "dbo:mayorMandate";
|
|
2270
|
-
mayorTitle: "dbo:mayorTitle";
|
|
2271
|
-
mbaId: "dbo:mbaId";
|
|
2272
|
-
meanRadius: "dbo:meanRadius";
|
|
2273
|
-
meanTemperature: "dbo:meanTemperature";
|
|
2274
|
-
meaning: "dbo:meaning";
|
|
2275
|
-
measurements: "dbo:measurements";
|
|
2276
|
-
medalist: "dbo:medalist";
|
|
2277
|
-
media: "dbo:media";
|
|
2278
|
-
mediaItem: "dbo:mediaItem";
|
|
2279
|
-
mediaType: "dbo:mediaType";
|
|
2280
|
-
medicalCause: "dbo:medicalCause";
|
|
2281
|
-
medicalDiagnosis: "dbo:medicalDiagnosis";
|
|
2282
|
-
medicalSpecialty: "dbo:medicalSpecialty";
|
|
2283
|
-
medication: "dbo:medication";
|
|
2284
|
-
medlinePlus: "dbo:medlinePlus";
|
|
2285
|
-
meetingBuilding: "dbo:meetingBuilding";
|
|
2286
|
-
meetingCity: "dbo:meetingCity";
|
|
2287
|
-
meetingRoad: "dbo:meetingRoad";
|
|
2288
|
-
meltingPoint: "dbo:meltingPoint";
|
|
2289
|
-
member: "dbo:member";
|
|
2290
|
-
memberOfParliament: "dbo:memberOfParliament";
|
|
2291
|
-
membership: "dbo:membership";
|
|
2292
|
-
membershipAsOf: "dbo:membershipAsOf";
|
|
2293
|
-
mentor: "dbo:mentor";
|
|
2294
|
-
mergedSettlement: "dbo:mergedSettlement";
|
|
2295
|
-
mergedWith: "dbo:mergedWith";
|
|
2296
|
-
mergerDate: "dbo:mergerDate";
|
|
2297
|
-
meshId: "dbo:meshId";
|
|
2298
|
-
meshName: "dbo:meshName";
|
|
2299
|
-
meshNumber: "dbo:meshNumber";
|
|
2300
|
-
messierName: "dbo:messierName";
|
|
2301
|
-
metropolitanBorough: "dbo:metropolitanBorough";
|
|
2302
|
-
mgiid: "dbo:mgiid";
|
|
2303
|
-
militaryBranch: "dbo:militaryBranch";
|
|
2304
|
-
militaryCommand: "dbo:militaryCommand";
|
|
2305
|
-
militaryFunction: "dbo:militaryFunction";
|
|
2306
|
-
militaryGovernment: "dbo:militaryGovernment";
|
|
2307
|
-
militaryRank: "dbo:militaryRank";
|
|
2308
|
-
militaryService: "dbo:militaryService";
|
|
2309
|
-
militaryUnit: "dbo:militaryUnit";
|
|
2310
|
-
militaryUnitSize: "dbo:militaryUnitSize";
|
|
2311
|
-
millSpan: "dbo:millSpan";
|
|
2312
|
-
millType: "dbo:millType";
|
|
2313
|
-
millsCodeBE: "dbo:millsCodeBE";
|
|
2314
|
-
millsCodeDutch: "dbo:millsCodeDutch";
|
|
2315
|
-
millsCodeNL: "dbo:millsCodeNL";
|
|
2316
|
-
millsCodeNLVerdwenen: "dbo:millsCodeNLVerdwenen";
|
|
2317
|
-
millsCodeNLWindmotoren: "dbo:millsCodeNLWindmotoren";
|
|
2318
|
-
min: "dbo:min";
|
|
2319
|
-
minTime: "dbo:minTime";
|
|
2320
|
-
minimumArea: "dbo:minimumArea";
|
|
2321
|
-
minimumAreaQuote: "dbo:minimumAreaQuote";
|
|
2322
|
-
minimumDischarge: "dbo:minimumDischarge";
|
|
2323
|
-
minimumElevation: "dbo:minimumElevation";
|
|
2324
|
-
minimumInclination: "dbo:minimumInclination";
|
|
2325
|
-
minimumTemperature: "dbo:minimumTemperature";
|
|
2326
|
-
minister: "dbo:minister";
|
|
2327
|
-
minority: "dbo:minority";
|
|
2328
|
-
minorityFloorLeader: "dbo:minorityFloorLeader";
|
|
2329
|
-
minorityLeader: "dbo:minorityLeader";
|
|
2330
|
-
mirDockings: "dbo:mirDockings";
|
|
2331
|
-
mission: "dbo:mission";
|
|
2332
|
-
missionDuration: "dbo:missionDuration";
|
|
2333
|
-
missions: "dbo:missions";
|
|
2334
|
-
model: "dbo:model";
|
|
2335
|
-
modelEndDate: "dbo:modelEndDate";
|
|
2336
|
-
modelEndYear: "dbo:modelEndYear";
|
|
2337
|
-
modelLineVehicle: "dbo:modelLineVehicle";
|
|
2338
|
-
modelStartDate: "dbo:modelStartDate";
|
|
2339
|
-
modelStartYear: "dbo:modelStartYear";
|
|
2340
|
-
moderna: "dbo:moderna";
|
|
2341
|
-
modernaCumul: "dbo:modernaCumul";
|
|
2342
|
-
molarMass: "dbo:molarMass";
|
|
2343
|
-
molecularWeight: "dbo:molecularWeight";
|
|
2344
|
-
monarch: "dbo:monarch";
|
|
2345
|
-
month: "dbo:month";
|
|
2346
|
-
mood: "dbo:mood";
|
|
2347
|
-
mostDownPoint: "dbo:mostDownPoint";
|
|
2348
|
-
mostSuccessfulPlayer: "dbo:mostSuccessfulPlayer";
|
|
2349
|
-
mostWins: "dbo:mostWins";
|
|
2350
|
-
mother: "dbo:mother";
|
|
2351
|
-
motive: "dbo:motive";
|
|
2352
|
-
motto: "dbo:motto";
|
|
2353
|
-
mount: "dbo:mount";
|
|
2354
|
-
mountainRange: "dbo:mountainRange";
|
|
2355
|
-
mouthCountry: "dbo:mouthCountry";
|
|
2356
|
-
mouthDistrict: "dbo:mouthDistrict";
|
|
2357
|
-
mouthElevation: "dbo:mouthElevation";
|
|
2358
|
-
mouthMountain: "dbo:mouthMountain";
|
|
2359
|
-
mouthPlace: "dbo:mouthPlace";
|
|
2360
|
-
mouthPosition: "dbo:mouthPosition";
|
|
2361
|
-
mouthRegion: "dbo:mouthRegion";
|
|
2362
|
-
mouthState: "dbo:mouthState";
|
|
2363
|
-
movement: "dbo:movement";
|
|
2364
|
-
movie: "dbo:movie";
|
|
2365
|
-
mukhtar: "dbo:mukhtar";
|
|
2366
|
-
municipality: "dbo:municipality";
|
|
2367
|
-
municipalityAbsorbedBy: "dbo:municipalityAbsorbedBy";
|
|
2368
|
-
municipalityCode: "dbo:municipalityCode";
|
|
2369
|
-
municipalityRenamedTo: "dbo:municipalityRenamedTo";
|
|
2370
|
-
municipalityType: "dbo:municipalityType";
|
|
2371
|
-
museum: "dbo:museum";
|
|
2372
|
-
museumType: "dbo:museumType";
|
|
2373
|
-
musicBand: "dbo:musicBand";
|
|
2374
|
-
musicBrainzArtistId: "dbo:musicBrainzArtistId";
|
|
2375
|
-
musicBy: "dbo:musicBy";
|
|
2376
|
-
musicComposer: "dbo:musicComposer";
|
|
2377
|
-
musicFormat: "dbo:musicFormat";
|
|
2378
|
-
musicFusionGenre: "dbo:musicFusionGenre";
|
|
2379
|
-
musicSubgenre: "dbo:musicSubgenre";
|
|
2380
|
-
musicType: "dbo:musicType";
|
|
2381
|
-
musicalArtist: "dbo:musicalArtist";
|
|
2382
|
-
musicalBand: "dbo:musicalBand";
|
|
2383
|
-
musicalKey: "dbo:musicalKey";
|
|
2384
|
-
musicians: "dbo:musicians";
|
|
2385
|
-
muteCharacterInPlay: "dbo:muteCharacterInPlay";
|
|
2386
|
-
mvp: "dbo:mvp";
|
|
2387
|
-
mythology: "dbo:mythology";
|
|
2388
|
-
naacpImageAward: "dbo:naacpImageAward";
|
|
2389
|
-
name: "dbo:name";
|
|
2390
|
-
nameAsOf: "dbo:nameAsOf";
|
|
2391
|
-
nameDay: "dbo:nameDay";
|
|
2392
|
-
nameInCantoneseChinese: "dbo:nameInCantoneseChinese";
|
|
2393
|
-
nameInHangulKorean: "dbo:nameInHangulKorean";
|
|
2394
|
-
nameInHanjaKorean: "dbo:nameInHanjaKorean";
|
|
2395
|
-
nameInJapanese: "dbo:nameInJapanese";
|
|
2396
|
-
nameInMindongyuChinese: "dbo:nameInMindongyuChinese";
|
|
2397
|
-
nameInMinnanyuChinese: "dbo:nameInMinnanyuChinese";
|
|
2398
|
-
nameInPinyinChinese: "dbo:nameInPinyinChinese";
|
|
2399
|
-
nameInSimplifiedChinese: "dbo:nameInSimplifiedChinese";
|
|
2400
|
-
nameInTraditionalChinese: "dbo:nameInTraditionalChinese";
|
|
2401
|
-
nameInWadeGilesChinese: "dbo:nameInWadeGilesChinese";
|
|
2402
|
-
namedAfter: "dbo:namedAfter";
|
|
2403
|
-
namedByLanguage: "dbo:namedByLanguage";
|
|
2404
|
-
names: "dbo:names";
|
|
2405
|
-
narrator: "dbo:narrator";
|
|
2406
|
-
nation: "dbo:nation";
|
|
2407
|
-
nationalAffiliation: "dbo:nationalAffiliation";
|
|
2408
|
-
nationalChampionship: "dbo:nationalChampionship";
|
|
2409
|
-
nationalFilmAward: "dbo:nationalFilmAward";
|
|
2410
|
-
nationalOlympicCommittee: "dbo:nationalOlympicCommittee";
|
|
2411
|
-
nationalRanking: "dbo:nationalRanking";
|
|
2412
|
-
nationalSelection: "dbo:nationalSelection";
|
|
2413
|
-
nationalTeam: "dbo:nationalTeam";
|
|
2414
|
-
nationalTeamMatchPoint: "dbo:nationalTeamMatchPoint";
|
|
2415
|
-
nationalTeamYear: "dbo:nationalTeamYear";
|
|
2416
|
-
nationalTopographicSystemMapNumber: "dbo:nationalTopographicSystemMapNumber";
|
|
2417
|
-
nationalTournament: "dbo:nationalTournament";
|
|
2418
|
-
nationalTournamentBronze: "dbo:nationalTournamentBronze";
|
|
2419
|
-
nationalTournamentGold: "dbo:nationalTournamentGold";
|
|
2420
|
-
nationalTournamentSilver: "dbo:nationalTournamentSilver";
|
|
2421
|
-
nationalYears: "dbo:nationalYears";
|
|
2422
|
-
nationality: "dbo:nationality";
|
|
2423
|
-
ncaaSeason: "dbo:ncaaSeason";
|
|
2424
|
-
ncaaTeam: "dbo:ncaaTeam";
|
|
2425
|
-
ncbhof: "dbo:ncbhof";
|
|
2426
|
-
nciId: "dbo:nciId";
|
|
2427
|
-
ndlId: "dbo:ndlId";
|
|
2428
|
-
nearestCity: "dbo:nearestCity";
|
|
2429
|
-
neighboringMunicipality: "dbo:neighboringMunicipality";
|
|
2430
|
-
neighbourConstellations: "dbo:neighbourConstellations";
|
|
2431
|
-
neighbourRegion: "dbo:neighbourRegion";
|
|
2432
|
-
neighbourhood: "dbo:neighbourhood";
|
|
2433
|
-
nerve: "dbo:nerve";
|
|
2434
|
-
netIncome: "dbo:netIncome";
|
|
2435
|
-
network: "dbo:network";
|
|
2436
|
-
networth: "dbo:networth";
|
|
2437
|
-
newspaper: "dbo:newspaper";
|
|
2438
|
-
nextEntity: "dbo:nextEntity";
|
|
2439
|
-
nextEvent: "dbo:nextEvent";
|
|
2440
|
-
nextMission: "dbo:nextMission";
|
|
2441
|
-
nextTrackNumber: "dbo:nextTrackNumber";
|
|
2442
|
-
nflCode: "dbo:nflCode";
|
|
2443
|
-
nflSeason: "dbo:nflSeason";
|
|
2444
|
-
nflTeam: "dbo:nflTeam";
|
|
2445
|
-
ngcName: "dbo:ngcName";
|
|
2446
|
-
nisCode: "dbo:nisCode";
|
|
2447
|
-
nlaId: "dbo:nlaId";
|
|
2448
|
-
nndbId: "dbo:nndbId";
|
|
2449
|
-
noContest: "dbo:noContest";
|
|
2450
|
-
nobelLaureates: "dbo:nobelLaureates";
|
|
2451
|
-
nominee: "dbo:nominee";
|
|
2452
|
-
nonFictionSubject: "dbo:nonFictionSubject";
|
|
2453
|
-
nonProfessionalCareer: "dbo:nonProfessionalCareer";
|
|
2454
|
-
nord: "dbo:nord";
|
|
2455
|
-
northEastPlace: "dbo:northEastPlace";
|
|
2456
|
-
northPlace: "dbo:northPlace";
|
|
2457
|
-
northWestPlace: "dbo:northWestPlace";
|
|
2458
|
-
notSolubleIn: "dbo:notSolubleIn";
|
|
2459
|
-
notableCommander: "dbo:notableCommander";
|
|
2460
|
-
notableFeatures: "dbo:notableFeatures";
|
|
2461
|
-
notableIdea: "dbo:notableIdea";
|
|
2462
|
-
notableStudent: "dbo:notableStudent";
|
|
2463
|
-
notableWine: "dbo:notableWine";
|
|
2464
|
-
notableWork: "dbo:notableWork";
|
|
2465
|
-
note: "dbo:note";
|
|
2466
|
-
noteOnPlaceOfBurial: "dbo:noteOnPlaceOfBurial";
|
|
2467
|
-
noteOnRestingPlace: "dbo:noteOnRestingPlace";
|
|
2468
|
-
notes: "dbo:notes";
|
|
2469
|
-
notifyDate: "dbo:notifyDate";
|
|
2470
|
-
novel: "dbo:novel";
|
|
2471
|
-
nrhpReferenceNumber: "dbo:nrhpReferenceNumber";
|
|
2472
|
-
nrhpType: "dbo:nrhpType";
|
|
2473
|
-
nssdcId: "dbo:nssdcId";
|
|
2474
|
-
numberBuilt: "dbo:numberBuilt";
|
|
2475
|
-
numberOfAcademicStaff: "dbo:numberOfAcademicStaff";
|
|
2476
|
-
numberOfAlbums: "dbo:numberOfAlbums";
|
|
2477
|
-
numberOfArrondissement: "dbo:numberOfArrondissement";
|
|
2478
|
-
numberOfBombs: "dbo:numberOfBombs";
|
|
2479
|
-
numberOfBronzeMedalsWon: "dbo:numberOfBronzeMedalsWon";
|
|
2480
|
-
numberOfCanton: "dbo:numberOfCanton";
|
|
2481
|
-
numberOfCantons: "dbo:numberOfCantons";
|
|
2482
|
-
numberOfCapitalDeputies: "dbo:numberOfCapitalDeputies";
|
|
2483
|
-
numberOfCity: "dbo:numberOfCity";
|
|
2484
|
-
numberOfClasses: "dbo:numberOfClasses";
|
|
2485
|
-
numberOfClassesWithResource: "dbo:numberOfClassesWithResource";
|
|
2486
|
-
numberOfClassrooms: "dbo:numberOfClassrooms";
|
|
2487
|
-
numberOfClubs: "dbo:numberOfClubs";
|
|
2488
|
-
numberOfCollectionItems: "dbo:numberOfCollectionItems";
|
|
2489
|
-
numberOfCompetitors: "dbo:numberOfCompetitors";
|
|
2490
|
-
numberOfCounties: "dbo:numberOfCounties";
|
|
2491
|
-
numberOfCountries: "dbo:numberOfCountries";
|
|
2492
|
-
numberOfCrew: "dbo:numberOfCrew";
|
|
2493
|
-
numberOfDeaths: "dbo:numberOfDeaths";
|
|
2494
|
-
numberOfDependency: "dbo:numberOfDependency";
|
|
2495
|
-
numberOfDisambiguates: "dbo:numberOfDisambiguates";
|
|
2496
|
-
numberOfDistrict: "dbo:numberOfDistrict";
|
|
2497
|
-
numberOfDistricts: "dbo:numberOfDistricts";
|
|
2498
|
-
numberOfDoctoralStudents: "dbo:numberOfDoctoralStudents";
|
|
2499
|
-
numberOfDoors: "dbo:numberOfDoors";
|
|
2500
|
-
numberOfEmployees: "dbo:numberOfEmployees";
|
|
2501
|
-
numberOfEntrances: "dbo:numberOfEntrances";
|
|
2502
|
-
numberOfEpisodes: "dbo:numberOfEpisodes";
|
|
2503
|
-
numberOfFederalDeputies: "dbo:numberOfFederalDeputies";
|
|
2504
|
-
numberOfFilms: "dbo:numberOfFilms";
|
|
2505
|
-
numberOfGoals: "dbo:numberOfGoals";
|
|
2506
|
-
numberOfGoldMedalsWon: "dbo:numberOfGoldMedalsWon";
|
|
2507
|
-
numberOfGraduateStudents: "dbo:numberOfGraduateStudents";
|
|
2508
|
-
numberOfGraves: "dbo:numberOfGraves";
|
|
2509
|
-
numberOfHoles: "dbo:numberOfHoles";
|
|
2510
|
-
numberOfHouses: "dbo:numberOfHouses";
|
|
2511
|
-
numberOfIndegree: "dbo:numberOfIndegree";
|
|
2512
|
-
numberOfIntercommunality: "dbo:numberOfIntercommunality";
|
|
2513
|
-
numberOfIsland: "dbo:numberOfIsland";
|
|
2514
|
-
numberOfIslands: "dbo:numberOfIslands";
|
|
2515
|
-
numberOfLanes: "dbo:numberOfLanes";
|
|
2516
|
-
numberOfLaps: "dbo:numberOfLaps";
|
|
2517
|
-
numberOfLaunches: "dbo:numberOfLaunches";
|
|
2518
|
-
numberOfLawyers: "dbo:numberOfLawyers";
|
|
2519
|
-
numberOfLifts: "dbo:numberOfLifts";
|
|
2520
|
-
numberOfLines: "dbo:numberOfLines";
|
|
2521
|
-
numberOfLiveAlbums: "dbo:numberOfLiveAlbums";
|
|
2522
|
-
numberOfLocations: "dbo:numberOfLocations";
|
|
2523
|
-
numberOfMatches: "dbo:numberOfMatches";
|
|
2524
|
-
numberOfMembers: "dbo:numberOfMembers";
|
|
2525
|
-
numberOfMembersAsOf: "dbo:numberOfMembersAsOf";
|
|
2526
|
-
numberOfMinistries: "dbo:numberOfMinistries";
|
|
2527
|
-
numberOfMunicipalities: "dbo:numberOfMunicipalities";
|
|
2528
|
-
numberOfMusicalArtistEntities: "dbo:numberOfMusicalArtistEntities";
|
|
2529
|
-
numberOfMusicalArtistInstrument: "dbo:numberOfMusicalArtistInstrument";
|
|
2530
|
-
numberOfMusicalArtistStyle: "dbo:numberOfMusicalArtistStyle";
|
|
2531
|
-
numberOfNeighbourhood: "dbo:numberOfNeighbourhood";
|
|
2532
|
-
numberOfNewlyIntroducedSports: "dbo:numberOfNewlyIntroducedSports";
|
|
2533
|
-
numberOfOffices: "dbo:numberOfOffices";
|
|
2534
|
-
numberOfOfficials: "dbo:numberOfOfficials";
|
|
2535
|
-
numberOfOrbits: "dbo:numberOfOrbits";
|
|
2536
|
-
numberOfOutdegree: "dbo:numberOfOutdegree";
|
|
2537
|
-
numberOfPads: "dbo:numberOfPads";
|
|
2538
|
-
numberOfPages: "dbo:numberOfPages";
|
|
2539
|
-
numberOfParkingSpaces: "dbo:numberOfParkingSpaces";
|
|
2540
|
-
numberOfParticipatingAthletes: "dbo:numberOfParticipatingAthletes";
|
|
2541
|
-
numberOfParticipatingFemaleAthletes: "dbo:numberOfParticipatingFemaleAthletes";
|
|
2542
|
-
numberOfParticipatingMaleAthletes: "dbo:numberOfParticipatingMaleAthletes";
|
|
2543
|
-
numberOfParticipatingNations: "dbo:numberOfParticipatingNations";
|
|
2544
|
-
numberOfPassengers: "dbo:numberOfPassengers";
|
|
2545
|
-
numberOfPeopleAttending: "dbo:numberOfPeopleAttending";
|
|
2546
|
-
numberOfPeopleLicensed: "dbo:numberOfPeopleLicensed";
|
|
2547
|
-
numberOfPersonBornInPlace: "dbo:numberOfPersonBornInPlace";
|
|
2548
|
-
numberOfPersonEntities: "dbo:numberOfPersonEntities";
|
|
2549
|
-
numberOfPersonFromUniversity: "dbo:numberOfPersonFromUniversity";
|
|
2550
|
-
numberOfPersonInOccupation: "dbo:numberOfPersonInOccupation";
|
|
2551
|
-
numberOfPiersInWater: "dbo:numberOfPiersInWater";
|
|
2552
|
-
numberOfPixels: "dbo:numberOfPixels";
|
|
2553
|
-
numberOfPlatformLevels: "dbo:numberOfPlatformLevels";
|
|
2554
|
-
numberOfPlayers: "dbo:numberOfPlayers";
|
|
2555
|
-
numberOfPostgraduateStudents: "dbo:numberOfPostgraduateStudents";
|
|
2556
|
-
numberOfPredicates: "dbo:numberOfPredicates";
|
|
2557
|
-
numberOfProfessionals: "dbo:numberOfProfessionals";
|
|
2558
|
-
numberOfProperties: "dbo:numberOfProperties";
|
|
2559
|
-
numberOfPropertiesUsed: "dbo:numberOfPropertiesUsed";
|
|
2560
|
-
numberOfReactors: "dbo:numberOfReactors";
|
|
2561
|
-
numberOfRedirectedResource: "dbo:numberOfRedirectedResource";
|
|
2562
|
-
numberOfResource: "dbo:numberOfResource";
|
|
2563
|
-
numberOfResourceOfClass: "dbo:numberOfResourceOfClass";
|
|
2564
|
-
numberOfResourceOfType: "dbo:numberOfResourceOfType";
|
|
2565
|
-
numberOfResourceWithType: "dbo:numberOfResourceWithType";
|
|
2566
|
-
numberOfRestaurants: "dbo:numberOfRestaurants";
|
|
2567
|
-
numberOfRockets: "dbo:numberOfRockets";
|
|
2568
|
-
numberOfRooms: "dbo:numberOfRooms";
|
|
2569
|
-
numberOfRun: "dbo:numberOfRun";
|
|
2570
|
-
numberOfSeasons: "dbo:numberOfSeasons";
|
|
2571
|
-
numberOfSeats: "dbo:numberOfSeats";
|
|
2572
|
-
numberOfSeatsInParliament: "dbo:numberOfSeatsInParliament";
|
|
2573
|
-
numberOfSettlement: "dbo:numberOfSettlement";
|
|
2574
|
-
numberOfSettlementsInCountry: "dbo:numberOfSettlementsInCountry";
|
|
2575
|
-
numberOfSilverMedalsWon: "dbo:numberOfSilverMedalsWon";
|
|
2576
|
-
numberOfSoccerPlayerInCountryRepre: "dbo:numberOfSoccerPlayerInCountryRepre";
|
|
2577
|
-
numberOfSoccerPlayersBornInPlace: "dbo:numberOfSoccerPlayersBornInPlace";
|
|
2578
|
-
numberOfSoccerPlayersInTeam: "dbo:numberOfSoccerPlayersInTeam";
|
|
2579
|
-
numberOfSpans: "dbo:numberOfSpans";
|
|
2580
|
-
numberOfSpeakers: "dbo:numberOfSpeakers";
|
|
2581
|
-
numberOfSports: "dbo:numberOfSports";
|
|
2582
|
-
numberOfSportsEvents: "dbo:numberOfSportsEvents";
|
|
2583
|
-
numberOfStaff: "dbo:numberOfStaff";
|
|
2584
|
-
numberOfStars: "dbo:numberOfStars";
|
|
2585
|
-
numberOfStateDeputies: "dbo:numberOfStateDeputies";
|
|
2586
|
-
numberOfStations: "dbo:numberOfStations";
|
|
2587
|
-
numberOfStores: "dbo:numberOfStores";
|
|
2588
|
-
numberOfStudents: "dbo:numberOfStudents";
|
|
2589
|
-
numberOfStudioAlbums: "dbo:numberOfStudioAlbums";
|
|
2590
|
-
numberOfSuites: "dbo:numberOfSuites";
|
|
2591
|
-
numberOfTeams: "dbo:numberOfTeams";
|
|
2592
|
-
numberOfTracks: "dbo:numberOfTracks";
|
|
2593
|
-
numberOfTrails: "dbo:numberOfTrails";
|
|
2594
|
-
numberOfTriples: "dbo:numberOfTriples";
|
|
2595
|
-
numberOfTurns: "dbo:numberOfTurns";
|
|
2596
|
-
numberOfUndergraduateStudents: "dbo:numberOfUndergraduateStudents";
|
|
2597
|
-
numberOfUniqeResources: "dbo:numberOfUniqeResources";
|
|
2598
|
-
numberOfUseOfProperty: "dbo:numberOfUseOfProperty";
|
|
2599
|
-
numberOfVehicles: "dbo:numberOfVehicles";
|
|
2600
|
-
numberOfVillages: "dbo:numberOfVillages";
|
|
2601
|
-
numberOfVineyards: "dbo:numberOfVineyards";
|
|
2602
|
-
numberOfVisitors: "dbo:numberOfVisitors";
|
|
2603
|
-
numberOfVisitorsAsOf: "dbo:numberOfVisitorsAsOf";
|
|
2604
|
-
numberOfVolumes: "dbo:numberOfVolumes";
|
|
2605
|
-
numberOfVolunteers: "dbo:numberOfVolunteers";
|
|
2606
|
-
numberOfWineries: "dbo:numberOfWineries";
|
|
2607
|
-
numberSold: "dbo:numberSold";
|
|
2608
|
-
nutsCode: "dbo:nutsCode";
|
|
2609
|
-
observatory: "dbo:observatory";
|
|
2610
|
-
occupation: "dbo:occupation";
|
|
2611
|
-
oclc: "dbo:oclc";
|
|
2612
|
-
odor: "dbo:odor";
|
|
2613
|
-
offeredClasses: "dbo:offeredClasses";
|
|
2614
|
-
office: "dbo:office";
|
|
2615
|
-
officerInCharge: "dbo:officerInCharge";
|
|
2616
|
-
officialLanguage: "dbo:officialLanguage";
|
|
2617
|
-
officialName: "dbo:officialName";
|
|
2618
|
-
officialOpenedBy: "dbo:officialOpenedBy";
|
|
2619
|
-
officialSchoolColour: "dbo:officialSchoolColour";
|
|
2620
|
-
ofsCode: "dbo:ofsCode";
|
|
2621
|
-
oilSystem: "dbo:oilSystem";
|
|
2622
|
-
okatoCode: "dbo:okatoCode";
|
|
2623
|
-
oldDistrict: "dbo:oldDistrict";
|
|
2624
|
-
oldName: "dbo:oldName";
|
|
2625
|
-
oldProvince: "dbo:oldProvince";
|
|
2626
|
-
oldTeamCoached: "dbo:oldTeamCoached";
|
|
2627
|
-
oldcode: "dbo:oldcode";
|
|
2628
|
-
olivierAward: "dbo:olivierAward";
|
|
2629
|
-
olympicGames: "dbo:olympicGames";
|
|
2630
|
-
olympicGamesBronze: "dbo:olympicGamesBronze";
|
|
2631
|
-
olympicGamesGold: "dbo:olympicGamesGold";
|
|
2632
|
-
olympicGamesSilver: "dbo:olympicGamesSilver";
|
|
2633
|
-
olympicGamesWins: "dbo:olympicGamesWins";
|
|
2634
|
-
olympicOathSwornBy: "dbo:olympicOathSwornBy";
|
|
2635
|
-
olympicOathSwornByAthlete: "dbo:olympicOathSwornByAthlete";
|
|
2636
|
-
olympicOathSwornByJudge: "dbo:olympicOathSwornByJudge";
|
|
2637
|
-
omim: "dbo:omim";
|
|
2638
|
-
onChromosome: "dbo:onChromosome";
|
|
2639
|
-
ons: "dbo:ons";
|
|
2640
|
-
openAccessContent: "dbo:openAccessContent";
|
|
2641
|
-
openingDate: "dbo:openingDate";
|
|
2642
|
-
openingFilm: "dbo:openingFilm";
|
|
2643
|
-
openingTheme: "dbo:openingTheme";
|
|
2644
|
-
openingYear: "dbo:openingYear";
|
|
2645
|
-
operatingIncome: "dbo:operatingIncome";
|
|
2646
|
-
operatingSystem: "dbo:operatingSystem";
|
|
2647
|
-
operator: "dbo:operator";
|
|
2648
|
-
opponent: "dbo:opponent";
|
|
2649
|
-
opponents: "dbo:opponents";
|
|
2650
|
-
orbitalEccentricity: "dbo:orbitalEccentricity";
|
|
2651
|
-
orbitalFlights: "dbo:orbitalFlights";
|
|
2652
|
-
orbitalInclination: "dbo:orbitalInclination";
|
|
2653
|
-
orbitalPeriod: "dbo:orbitalPeriod";
|
|
2654
|
-
orbits: "dbo:orbits";
|
|
2655
|
-
orcidId: "dbo:orcidId";
|
|
2656
|
-
order: "dbo:order";
|
|
2657
|
-
orderDate: "dbo:orderDate";
|
|
2658
|
-
orderInOffice: "dbo:orderInOffice";
|
|
2659
|
-
ordination: "dbo:ordination";
|
|
2660
|
-
organ: "dbo:organ";
|
|
2661
|
-
organSystem: "dbo:organSystem";
|
|
2662
|
-
organisation: "dbo:organisation";
|
|
2663
|
-
organisationMember: "dbo:organisationMember";
|
|
2664
|
-
orientation: "dbo:orientation";
|
|
2665
|
-
origin: "dbo:origin";
|
|
2666
|
-
originalDanseCompetition: "dbo:originalDanseCompetition";
|
|
2667
|
-
originalDanseScore: "dbo:originalDanseScore";
|
|
2668
|
-
originalEndPoint: "dbo:originalEndPoint";
|
|
2669
|
-
originalLanguage: "dbo:originalLanguage";
|
|
2670
|
-
originalMaximumBoatBeam: "dbo:originalMaximumBoatBeam";
|
|
2671
|
-
originalMaximumBoatLength: "dbo:originalMaximumBoatLength";
|
|
2672
|
-
originalName: "dbo:originalName";
|
|
2673
|
-
originalStartPoint: "dbo:originalStartPoint";
|
|
2674
|
-
originalTitle: "dbo:originalTitle";
|
|
2675
|
-
originallyUsedFor: "dbo:originallyUsedFor";
|
|
2676
|
-
origo: "dbo:origo";
|
|
2677
|
-
orogeny: "dbo:orogeny";
|
|
2678
|
-
orpha: "dbo:orpha";
|
|
2679
|
-
orthologousGene: "dbo:orthologousGene";
|
|
2680
|
-
other: "dbo:other";
|
|
2681
|
-
otherActivity: "dbo:otherActivity";
|
|
2682
|
-
otherAppearances: "dbo:otherAppearances";
|
|
2683
|
-
otherChannel: "dbo:otherChannel";
|
|
2684
|
-
otherFamilyBranch: "dbo:otherFamilyBranch";
|
|
2685
|
-
otherFuelType: "dbo:otherFuelType";
|
|
2686
|
-
otherFunction: "dbo:otherFunction";
|
|
2687
|
-
otherInformation: "dbo:otherInformation";
|
|
2688
|
-
otherLanguage: "dbo:otherLanguage";
|
|
2689
|
-
otherMedia: "dbo:otherMedia";
|
|
2690
|
-
otherName: "dbo:otherName";
|
|
2691
|
-
otherOccupation: "dbo:otherOccupation";
|
|
2692
|
-
otherParty: "dbo:otherParty";
|
|
2693
|
-
otherServingLines: "dbo:otherServingLines";
|
|
2694
|
-
otherSportsExperience: "dbo:otherSportsExperience";
|
|
2695
|
-
otherWins: "dbo:otherWins";
|
|
2696
|
-
outflow: "dbo:outflow";
|
|
2697
|
-
output: "dbo:output";
|
|
2698
|
-
outskirts: "dbo:outskirts";
|
|
2699
|
-
overallRecord: "dbo:overallRecord";
|
|
2700
|
-
oversight: "dbo:oversight";
|
|
2701
|
-
owner: "dbo:owner";
|
|
2702
|
-
owningCompany: "dbo:owningCompany";
|
|
2703
|
-
owningOrganisation: "dbo:owningOrganisation";
|
|
2704
|
-
owns: "dbo:owns";
|
|
2705
|
-
painter: "dbo:painter";
|
|
2706
|
-
pandemic: "dbo:pandemic";
|
|
2707
|
-
pandemicDeaths: "dbo:pandemicDeaths";
|
|
2708
|
-
parent: "dbo:parent";
|
|
2709
|
-
parentCompany: "dbo:parentCompany";
|
|
2710
|
-
parentMountainPeak: "dbo:parentMountainPeak";
|
|
2711
|
-
parentOrganisation: "dbo:parentOrganisation";
|
|
2712
|
-
parentheses: "dbo:parentheses";
|
|
2713
|
-
parish: "dbo:parish";
|
|
2714
|
-
parkingInformation: "dbo:parkingInformation";
|
|
2715
|
-
parkingLotsCars: "dbo:parkingLotsCars";
|
|
2716
|
-
parkingLotsTrucks: "dbo:parkingLotsTrucks";
|
|
2717
|
-
parliament: "dbo:parliament";
|
|
2718
|
-
parliamentType: "dbo:parliamentType";
|
|
2719
|
-
parliamentaryGroup: "dbo:parliamentaryGroup";
|
|
2720
|
-
part: "dbo:part";
|
|
2721
|
-
partialFailedLaunches: "dbo:partialFailedLaunches";
|
|
2722
|
-
participant: "dbo:participant";
|
|
2723
|
-
participatingIn: "dbo:participatingIn";
|
|
2724
|
-
particularSign: "dbo:particularSign";
|
|
2725
|
-
partitionCoefficient: "dbo:partitionCoefficient";
|
|
2726
|
-
partner: "dbo:partner";
|
|
2727
|
-
party: "dbo:party";
|
|
2728
|
-
partyNumber: "dbo:partyNumber";
|
|
2729
|
-
passengersPerDay: "dbo:passengersPerDay";
|
|
2730
|
-
passengersPerYear: "dbo:passengersPerYear";
|
|
2731
|
-
passengersUsedSystem: "dbo:passengersUsedSystem";
|
|
2732
|
-
pastMember: "dbo:pastMember";
|
|
2733
|
-
pastor: "dbo:pastor";
|
|
2734
|
-
patent: "dbo:patent";
|
|
2735
|
-
patron: "dbo:patron";
|
|
2736
|
-
patronSaint: "dbo:patronSaint";
|
|
2737
|
-
pccSecretary: "dbo:pccSecretary";
|
|
2738
|
-
pdb: "dbo:pdb";
|
|
2739
|
-
peabodyAward: "dbo:peabodyAward";
|
|
2740
|
-
penaltiesTeamA: "dbo:penaltiesTeamA";
|
|
2741
|
-
penaltiesTeamB: "dbo:penaltiesTeamB";
|
|
2742
|
-
penaltyScore: "dbo:penaltyScore";
|
|
2743
|
-
pendamicDeaths: "dbo:pendamicDeaths";
|
|
2744
|
-
penisLength: "dbo:penisLength";
|
|
2745
|
-
peopleFullyVaccinated: "dbo:peopleFullyVaccinated";
|
|
2746
|
-
peopleName: "dbo:peopleName";
|
|
2747
|
-
peopleVaccinated: "dbo:peopleVaccinated";
|
|
2748
|
-
peopleVaccinatedPerHundred: "dbo:peopleVaccinatedPerHundred";
|
|
2749
|
-
perCapitaIncome: "dbo:perCapitaIncome";
|
|
2750
|
-
perCapitaIncomeAsOf: "dbo:perCapitaIncomeAsOf";
|
|
2751
|
-
perCapitaIncomeRank: "dbo:perCapitaIncomeRank";
|
|
2752
|
-
percentage: "dbo:percentage";
|
|
2753
|
-
percentageAlcohol: "dbo:percentageAlcohol";
|
|
2754
|
-
percentageFat: "dbo:percentageFat";
|
|
2755
|
-
percentageLiteracyMen: "dbo:percentageLiteracyMen";
|
|
2756
|
-
percentageLiteracyWomen: "dbo:percentageLiteracyWomen";
|
|
2757
|
-
percentageLiterate: "dbo:percentageLiterate";
|
|
2758
|
-
percentageOfAreaWater: "dbo:percentageOfAreaWater";
|
|
2759
|
-
performer: "dbo:performer";
|
|
2760
|
-
periapsis: "dbo:periapsis";
|
|
2761
|
-
perifocus: "dbo:perifocus";
|
|
2762
|
-
perimeter: "dbo:perimeter";
|
|
2763
|
-
period: "dbo:period";
|
|
2764
|
-
perpetrator: "dbo:perpetrator";
|
|
2765
|
-
person: "dbo:person";
|
|
2766
|
-
personFunction: "dbo:personFunction";
|
|
2767
|
-
personName: "dbo:personName";
|
|
2768
|
-
personsFirstDosesCumul: "dbo:personsFirstDosesCumul";
|
|
2769
|
-
personsFullDosesCumul: "dbo:personsFullDosesCumul";
|
|
2770
|
-
pfizer: "dbo:pfizer";
|
|
2771
|
-
pfizerCumul: "dbo:pfizerCumul";
|
|
2772
|
-
pgaWins: "dbo:pgaWins";
|
|
2773
|
-
philosophicalSchool: "dbo:philosophicalSchool";
|
|
2774
|
-
phonePrefix: "dbo:phonePrefix";
|
|
2775
|
-
phonePrefixLabel: "dbo:phonePrefixLabel";
|
|
2776
|
-
photographer: "dbo:photographer";
|
|
2777
|
-
phylum: "dbo:phylum";
|
|
2778
|
-
picture: "dbo:picture";
|
|
2779
|
-
pictureDescription: "dbo:pictureDescription";
|
|
2780
|
-
pictureFormat: "dbo:pictureFormat";
|
|
2781
|
-
picturesCommonsCategory: "dbo:picturesCommonsCategory";
|
|
2782
|
-
piercing: "dbo:piercing";
|
|
2783
|
-
pisciculturalPopulation: "dbo:pisciculturalPopulation";
|
|
2784
|
-
pistonStroke: "dbo:pistonStroke";
|
|
2785
|
-
place: "dbo:place";
|
|
2786
|
-
placeOfBurial: "dbo:placeOfBurial";
|
|
2787
|
-
placeOfWorship: "dbo:placeOfWorship";
|
|
2788
|
-
plant: "dbo:plant";
|
|
2789
|
-
playRole: "dbo:playRole";
|
|
2790
|
-
playerInTeam: "dbo:playerInTeam";
|
|
2791
|
-
playerSeason: "dbo:playerSeason";
|
|
2792
|
-
playerStatus: "dbo:playerStatus";
|
|
2793
|
-
playingTime: "dbo:playingTime";
|
|
2794
|
-
plays: "dbo:plays";
|
|
2795
|
-
pluviometry: "dbo:pluviometry";
|
|
2796
|
-
podium: "dbo:podium";
|
|
2797
|
-
podiums: "dbo:podiums";
|
|
2798
|
-
pole: "dbo:pole";
|
|
2799
|
-
poleDriver: "dbo:poleDriver";
|
|
2800
|
-
poleDriverCountry: "dbo:poleDriverCountry";
|
|
2801
|
-
poleDriverTeam: "dbo:poleDriverTeam";
|
|
2802
|
-
polePosition: "dbo:polePosition";
|
|
2803
|
-
poles: "dbo:poles";
|
|
2804
|
-
policeName: "dbo:policeName";
|
|
2805
|
-
polishFilmAward: "dbo:polishFilmAward";
|
|
2806
|
-
politicGovernmentDepartment: "dbo:politicGovernmentDepartment";
|
|
2807
|
-
politicalFunction: "dbo:politicalFunction";
|
|
2808
|
-
politicalLeader: "dbo:politicalLeader";
|
|
2809
|
-
politicalMajority: "dbo:politicalMajority";
|
|
2810
|
-
politicalPartyInLegislature: "dbo:politicalPartyInLegislature";
|
|
2811
|
-
politicalPartyOfLeader: "dbo:politicalPartyOfLeader";
|
|
2812
|
-
politicalSeats: "dbo:politicalSeats";
|
|
2813
|
-
politician: "dbo:politician";
|
|
2814
|
-
popularVote: "dbo:popularVote";
|
|
2815
|
-
population: "dbo:population";
|
|
2816
|
-
populationAsOf: "dbo:populationAsOf";
|
|
2817
|
-
populationDensity: "dbo:populationDensity";
|
|
2818
|
-
populationMetro: "dbo:populationMetro";
|
|
2819
|
-
populationMetroDensity: "dbo:populationMetroDensity";
|
|
2820
|
-
populationPctChildren: "dbo:populationPctChildren";
|
|
2821
|
-
populationPctMen: "dbo:populationPctMen";
|
|
2822
|
-
populationPctWomen: "dbo:populationPctWomen";
|
|
2823
|
-
populationPlace: "dbo:populationPlace";
|
|
2824
|
-
populationQuote: "dbo:populationQuote";
|
|
2825
|
-
populationRural: "dbo:populationRural";
|
|
2826
|
-
populationRuralDensity: "dbo:populationRuralDensity";
|
|
2827
|
-
populationTotal: "dbo:populationTotal";
|
|
2828
|
-
populationTotalRanking: "dbo:populationTotalRanking";
|
|
2829
|
-
populationTotalReference: "dbo:populationTotalReference";
|
|
2830
|
-
populationUrban: "dbo:populationUrban";
|
|
2831
|
-
populationUrbanDensity: "dbo:populationUrbanDensity";
|
|
2832
|
-
populationYear: "dbo:populationYear";
|
|
2833
|
-
portfolio: "dbo:portfolio";
|
|
2834
|
-
portrayer: "dbo:portrayer";
|
|
2835
|
-
position: "dbo:position";
|
|
2836
|
-
postalCode: "dbo:postalCode";
|
|
2837
|
-
power: "dbo:power";
|
|
2838
|
-
powerOutput: "dbo:powerOutput";
|
|
2839
|
-
powerType: "dbo:powerType";
|
|
2840
|
-
precursor: "dbo:precursor";
|
|
2841
|
-
predecessor: "dbo:predecessor";
|
|
2842
|
-
prefaceBy: "dbo:prefaceBy";
|
|
2843
|
-
prefect: "dbo:prefect";
|
|
2844
|
-
prefectMandate: "dbo:prefectMandate";
|
|
2845
|
-
prefecture: "dbo:prefecture";
|
|
2846
|
-
premiereDate: "dbo:premiereDate";
|
|
2847
|
-
premierePlace: "dbo:premierePlace";
|
|
2848
|
-
premiereYear: "dbo:premiereYear";
|
|
2849
|
-
presentMunicipality: "dbo:presentMunicipality";
|
|
2850
|
-
presentName: "dbo:presentName";
|
|
2851
|
-
presenter: "dbo:presenter";
|
|
2852
|
-
president: "dbo:president";
|
|
2853
|
-
presidentGeneralCouncil: "dbo:presidentGeneralCouncil";
|
|
2854
|
-
presidentGeneralCouncilMandate: "dbo:presidentGeneralCouncilMandate";
|
|
2855
|
-
presidentRegionalCouncil: "dbo:presidentRegionalCouncil";
|
|
2856
|
-
presidentRegionalCouncilMandate: "dbo:presidentRegionalCouncilMandate";
|
|
2857
|
-
previousDemographics: "dbo:previousDemographics";
|
|
2858
|
-
previousEditor: "dbo:previousEditor";
|
|
2859
|
-
previousEntity: "dbo:previousEntity";
|
|
2860
|
-
previousEvent: "dbo:previousEvent";
|
|
2861
|
-
previousInfrastructure: "dbo:previousInfrastructure";
|
|
2862
|
-
previousMission: "dbo:previousMission";
|
|
2863
|
-
previousName: "dbo:previousName";
|
|
2864
|
-
previousPopulation: "dbo:previousPopulation";
|
|
2865
|
-
previousPopulationTotal: "dbo:previousPopulationTotal";
|
|
2866
|
-
previousTrackNumber: "dbo:previousTrackNumber";
|
|
2867
|
-
previousWork: "dbo:previousWork";
|
|
2868
|
-
previousWorkDate: "dbo:previousWorkDate";
|
|
2869
|
-
price: "dbo:price";
|
|
2870
|
-
primaryFuelType: "dbo:primaryFuelType";
|
|
2871
|
-
primate: "dbo:primate";
|
|
2872
|
-
primeMinister: "dbo:primeMinister";
|
|
2873
|
-
primogenitor: "dbo:primogenitor";
|
|
2874
|
-
principal: "dbo:principal";
|
|
2875
|
-
principalArea: "dbo:principalArea";
|
|
2876
|
-
principalEngineer: "dbo:principalEngineer";
|
|
2877
|
-
proTeam: "dbo:proTeam";
|
|
2878
|
-
probowlPick: "dbo:probowlPick";
|
|
2879
|
-
procedure: "dbo:procedure";
|
|
2880
|
-
producedBy: "dbo:producedBy";
|
|
2881
|
-
producer: "dbo:producer";
|
|
2882
|
-
produces: "dbo:produces";
|
|
2883
|
-
product: "dbo:product";
|
|
2884
|
-
productShape: "dbo:productShape";
|
|
2885
|
-
production: "dbo:production";
|
|
2886
|
-
productionCompany: "dbo:productionCompany";
|
|
2887
|
-
productionEndDate: "dbo:productionEndDate";
|
|
2888
|
-
productionEndYear: "dbo:productionEndYear";
|
|
2889
|
-
productionStartDate: "dbo:productionStartDate";
|
|
2890
|
-
productionStartYear: "dbo:productionStartYear";
|
|
2891
|
-
productionYears: "dbo:productionYears";
|
|
2892
|
-
profession: "dbo:profession";
|
|
2893
|
-
programCost: "dbo:programCost";
|
|
2894
|
-
programmeFormat: "dbo:programmeFormat";
|
|
2895
|
-
programmingLanguage: "dbo:programmingLanguage";
|
|
2896
|
-
project: "dbo:project";
|
|
2897
|
-
projectBudgetFunding: "dbo:projectBudgetFunding";
|
|
2898
|
-
projectBudgetTotal: "dbo:projectBudgetTotal";
|
|
2899
|
-
projectCoordinator: "dbo:projectCoordinator";
|
|
2900
|
-
projectEndDate: "dbo:projectEndDate";
|
|
2901
|
-
projectKeyword: "dbo:projectKeyword";
|
|
2902
|
-
projectObjective: "dbo:projectObjective";
|
|
2903
|
-
projectParticipant: "dbo:projectParticipant";
|
|
2904
|
-
projectReferenceID: "dbo:projectReferenceID";
|
|
2905
|
-
projectStartDate: "dbo:projectStartDate";
|
|
2906
|
-
projectType: "dbo:projectType";
|
|
2907
|
-
prominence: "dbo:prominence";
|
|
2908
|
-
promotion: "dbo:promotion";
|
|
2909
|
-
pronunciation: "dbo:pronunciation";
|
|
2910
|
-
prospectLeague: "dbo:prospectLeague";
|
|
2911
|
-
prospectTeam: "dbo:prospectTeam";
|
|
2912
|
-
protectionStatus: "dbo:protectionStatus";
|
|
2913
|
-
protein: "dbo:protein";
|
|
2914
|
-
protestantPercentage: "dbo:protestantPercentage";
|
|
2915
|
-
provCode: "dbo:provCode";
|
|
2916
|
-
provides: "dbo:provides";
|
|
2917
|
-
province: "dbo:province";
|
|
2918
|
-
provinceIsoCode: "dbo:provinceIsoCode";
|
|
2919
|
-
provinceLink: "dbo:provinceLink";
|
|
2920
|
-
provost: "dbo:provost";
|
|
2921
|
-
pseudonym: "dbo:pseudonym";
|
|
2922
|
-
pubchem: "dbo:pubchem";
|
|
2923
|
-
publication: "dbo:publication";
|
|
2924
|
-
publicationDate: "dbo:publicationDate";
|
|
2925
|
-
publiclyAccessible: "dbo:publiclyAccessible";
|
|
2926
|
-
publisher: "dbo:publisher";
|
|
2927
|
-
purchasingPowerParity: "dbo:purchasingPowerParity";
|
|
2928
|
-
purchasingPowerParityRank: "dbo:purchasingPowerParityRank";
|
|
2929
|
-
purchasingPowerParityYear: "dbo:purchasingPowerParityYear";
|
|
2930
|
-
purpose: "dbo:purpose";
|
|
2931
|
-
qatarClassic: "dbo:qatarClassic";
|
|
2932
|
-
quebecerTitle: "dbo:quebecerTitle";
|
|
2933
|
-
quotation: "dbo:quotation";
|
|
2934
|
-
quote: "dbo:quote";
|
|
2935
|
-
ra: "dbo:ra";
|
|
2936
|
-
race: "dbo:race";
|
|
2937
|
-
raceHorse: "dbo:raceHorse";
|
|
2938
|
-
raceLength: "dbo:raceLength";
|
|
2939
|
-
raceResult: "dbo:raceResult";
|
|
2940
|
-
raceTrack: "dbo:raceTrack";
|
|
2941
|
-
raceWins: "dbo:raceWins";
|
|
2942
|
-
races: "dbo:races";
|
|
2943
|
-
racketCatching: "dbo:racketCatching";
|
|
2944
|
-
radio: "dbo:radio";
|
|
2945
|
-
radioStation: "dbo:radioStation";
|
|
2946
|
-
radius_ly: "dbo:radius_ly";
|
|
2947
|
-
railGauge: "dbo:railGauge";
|
|
2948
|
-
railwayLineUsingTunnel: "dbo:railwayLineUsingTunnel";
|
|
2949
|
-
railwayPlatforms: "dbo:railwayPlatforms";
|
|
2950
|
-
railwayRollingStock: "dbo:railwayRollingStock";
|
|
2951
|
-
rank: "dbo:rank";
|
|
2952
|
-
rankAgreement: "dbo:rankAgreement";
|
|
2953
|
-
rankArea: "dbo:rankArea";
|
|
2954
|
-
rankInFinalMedalCount: "dbo:rankInFinalMedalCount";
|
|
2955
|
-
rankPopulation: "dbo:rankPopulation";
|
|
2956
|
-
ranking: "dbo:ranking";
|
|
2957
|
-
rankingWins: "dbo:rankingWins";
|
|
2958
|
-
rankingsDoubles: "dbo:rankingsDoubles";
|
|
2959
|
-
rankingsSingles: "dbo:rankingsSingles";
|
|
2960
|
-
rating: "dbo:rating";
|
|
2961
|
-
ratio: "dbo:ratio";
|
|
2962
|
-
rebuildDate: "dbo:rebuildDate";
|
|
2963
|
-
rebuilder: "dbo:rebuilder";
|
|
2964
|
-
rebuildingDate: "dbo:rebuildingDate";
|
|
2965
|
-
rebuildingYear: "dbo:rebuildingYear";
|
|
2966
|
-
recentWinner: "dbo:recentWinner";
|
|
2967
|
-
recommissioningDate: "dbo:recommissioningDate";
|
|
2968
|
-
recordDate: "dbo:recordDate";
|
|
2969
|
-
recordLabel: "dbo:recordLabel";
|
|
2970
|
-
recordedIn: "dbo:recordedIn";
|
|
2971
|
-
recoveryCases: "dbo:recoveryCases";
|
|
2972
|
-
rector: "dbo:rector";
|
|
2973
|
-
redListIdNL: "dbo:redListIdNL";
|
|
2974
|
-
redLongDistancePisteNumber: "dbo:redLongDistancePisteNumber";
|
|
2975
|
-
redSkiPisteNumber: "dbo:redSkiPisteNumber";
|
|
2976
|
-
redline: "dbo:redline";
|
|
2977
|
-
refcul: "dbo:refcul";
|
|
2978
|
-
reference: "dbo:reference";
|
|
2979
|
-
reffBourgmestre: "dbo:reffBourgmestre";
|
|
2980
|
-
refgen: "dbo:refgen";
|
|
2981
|
-
refgeo: "dbo:refgeo";
|
|
2982
|
-
refpol: "dbo:refpol";
|
|
2983
|
-
refseq: "dbo:refseq";
|
|
2984
|
-
refseqmrna: "dbo:refseqmrna";
|
|
2985
|
-
refseqprotein: "dbo:refseqprotein";
|
|
2986
|
-
regency: "dbo:regency";
|
|
2987
|
-
regentOf: "dbo:regentOf";
|
|
2988
|
-
regime: "dbo:regime";
|
|
2989
|
-
region: "dbo:region";
|
|
2990
|
-
regionLink: "dbo:regionLink";
|
|
2991
|
-
regionServed: "dbo:regionServed";
|
|
2992
|
-
regionType: "dbo:regionType";
|
|
2993
|
-
regionalCouncil: "dbo:regionalCouncil";
|
|
2994
|
-
regionalLanguage: "dbo:regionalLanguage";
|
|
2995
|
-
regionalPrefecture: "dbo:regionalPrefecture";
|
|
2996
|
-
registration: "dbo:registration";
|
|
2997
|
-
registry: "dbo:registry";
|
|
2998
|
-
registryNumber: "dbo:registryNumber";
|
|
2999
|
-
reign: "dbo:reign";
|
|
3000
|
-
reignName: "dbo:reignName";
|
|
3001
|
-
reigningPope: "dbo:reigningPope";
|
|
3002
|
-
related: "dbo:related";
|
|
3003
|
-
relatedFunctions: "dbo:relatedFunctions";
|
|
3004
|
-
relatedMeanOfTransportation: "dbo:relatedMeanOfTransportation";
|
|
3005
|
-
relatedPlaces: "dbo:relatedPlaces";
|
|
3006
|
-
relation: "dbo:relation";
|
|
3007
|
-
relative: "dbo:relative";
|
|
3008
|
-
relativeAtomicMass: "dbo:relativeAtomicMass";
|
|
3009
|
-
releaseDate: "dbo:releaseDate";
|
|
3010
|
-
releaseLocation: "dbo:releaseLocation";
|
|
3011
|
-
relics: "dbo:relics";
|
|
3012
|
-
relief: "dbo:relief";
|
|
3013
|
-
religion: "dbo:religion";
|
|
3014
|
-
religiousHead: "dbo:religiousHead";
|
|
3015
|
-
religiousHeadLabel: "dbo:religiousHeadLabel";
|
|
3016
|
-
religiousOrder: "dbo:religiousOrder";
|
|
3017
|
-
reopened: "dbo:reopened";
|
|
3018
|
-
reopeningDate: "dbo:reopeningDate";
|
|
3019
|
-
reopeningYear: "dbo:reopeningYear";
|
|
3020
|
-
reportingMark: "dbo:reportingMark";
|
|
3021
|
-
representative: "dbo:representative";
|
|
3022
|
-
requirement: "dbo:requirement";
|
|
3023
|
-
reservations: "dbo:reservations";
|
|
3024
|
-
residence: "dbo:residence";
|
|
3025
|
-
resolution: "dbo:resolution";
|
|
3026
|
-
restingDate: "dbo:restingDate";
|
|
3027
|
-
restingPlace: "dbo:restingPlace";
|
|
3028
|
-
restingPlacePosition: "dbo:restingPlacePosition";
|
|
3029
|
-
restoreDate: "dbo:restoreDate";
|
|
3030
|
-
restriction: "dbo:restriction";
|
|
3031
|
-
result: "dbo:result";
|
|
3032
|
-
retentionTime: "dbo:retentionTime";
|
|
3033
|
-
retired: "dbo:retired";
|
|
3034
|
-
retiredRocket: "dbo:retiredRocket";
|
|
3035
|
-
retirementDate: "dbo:retirementDate";
|
|
3036
|
-
revenue: "dbo:revenue";
|
|
3037
|
-
revenueYear: "dbo:revenueYear";
|
|
3038
|
-
review: "dbo:review";
|
|
3039
|
-
rgbCoordinateBlue: "dbo:rgbCoordinateBlue";
|
|
3040
|
-
rgbCoordinateGreen: "dbo:rgbCoordinateGreen";
|
|
3041
|
-
rgbCoordinateRed: "dbo:rgbCoordinateRed";
|
|
3042
|
-
ridId: "dbo:ridId";
|
|
3043
|
-
rightAscension: "dbo:rightAscension";
|
|
3044
|
-
rightChild: "dbo:rightChild";
|
|
3045
|
-
rightTributary: "dbo:rightTributary";
|
|
3046
|
-
rivalSchool: "dbo:rivalSchool";
|
|
3047
|
-
river: "dbo:river";
|
|
3048
|
-
riverBranch: "dbo:riverBranch";
|
|
3049
|
-
riverBranchOf: "dbo:riverBranchOf";
|
|
3050
|
-
riverMouth: "dbo:riverMouth";
|
|
3051
|
-
rkdArtistsId: "dbo:rkdArtistsId";
|
|
3052
|
-
road: "dbo:road";
|
|
3053
|
-
rocket: "dbo:rocket";
|
|
3054
|
-
rocketFunction: "dbo:rocketFunction";
|
|
3055
|
-
rocketStages: "dbo:rocketStages";
|
|
3056
|
-
rolandGarrosDouble: "dbo:rolandGarrosDouble";
|
|
3057
|
-
rolandGarrosMixed: "dbo:rolandGarrosMixed";
|
|
3058
|
-
rolandGarrosSingle: "dbo:rolandGarrosSingle";
|
|
3059
|
-
role: "dbo:role";
|
|
3060
|
-
roleInEvent: "dbo:roleInEvent";
|
|
3061
|
-
roofHeight: "dbo:roofHeight";
|
|
3062
|
-
rotationPeriod: "dbo:rotationPeriod";
|
|
3063
|
-
route: "dbo:route";
|
|
3064
|
-
routeActivity: "dbo:routeActivity";
|
|
3065
|
-
routeDirection: "dbo:routeDirection";
|
|
3066
|
-
routeEnd: "dbo:routeEnd";
|
|
3067
|
-
routeEndDirection: "dbo:routeEndDirection";
|
|
3068
|
-
routeEndLocation: "dbo:routeEndLocation";
|
|
3069
|
-
routeJunction: "dbo:routeJunction";
|
|
3070
|
-
routeLine: "dbo:routeLine";
|
|
3071
|
-
routeNext: "dbo:routeNext";
|
|
3072
|
-
routeNumber: "dbo:routeNumber";
|
|
3073
|
-
routePrevious: "dbo:routePrevious";
|
|
3074
|
-
routeStart: "dbo:routeStart";
|
|
3075
|
-
routeStartDirection: "dbo:routeStartDirection";
|
|
3076
|
-
routeStartLocation: "dbo:routeStartLocation";
|
|
3077
|
-
routeTypeAbbreviation: "dbo:routeTypeAbbreviation";
|
|
3078
|
-
royalAnthem: "dbo:royalAnthem";
|
|
3079
|
-
ruling: "dbo:ruling";
|
|
3080
|
-
runningMate: "dbo:runningMate";
|
|
3081
|
-
runtime: "dbo:runtime";
|
|
3082
|
-
runwayDesignation: "dbo:runwayDesignation";
|
|
3083
|
-
runwayLength: "dbo:runwayLength";
|
|
3084
|
-
runwaySurface: "dbo:runwaySurface";
|
|
3085
|
-
runwayWidth: "dbo:runwayWidth";
|
|
3086
|
-
ruralMunicipality: "dbo:ruralMunicipality";
|
|
3087
|
-
saint: "dbo:saint";
|
|
3088
|
-
salary: "dbo:salary";
|
|
3089
|
-
sales: "dbo:sales";
|
|
3090
|
-
sameName: "dbo:sameName";
|
|
3091
|
-
satScore: "dbo:satScore";
|
|
3092
|
-
satcat: "dbo:satcat";
|
|
3093
|
-
satellite: "dbo:satellite";
|
|
3094
|
-
satellitesDeployed: "dbo:satellitesDeployed";
|
|
3095
|
-
scale: "dbo:scale";
|
|
3096
|
-
scene: "dbo:scene";
|
|
3097
|
-
school: "dbo:school";
|
|
3098
|
-
schoolBoard: "dbo:schoolBoard";
|
|
3099
|
-
schoolCode: "dbo:schoolCode";
|
|
3100
|
-
schoolNumber: "dbo:schoolNumber";
|
|
3101
|
-
schoolPatron: "dbo:schoolPatron";
|
|
3102
|
-
scientificName: "dbo:scientificName";
|
|
3103
|
-
score: "dbo:score";
|
|
3104
|
-
screenActorsGuildAward: "dbo:screenActorsGuildAward";
|
|
3105
|
-
sea: "dbo:sea";
|
|
3106
|
-
season: "dbo:season";
|
|
3107
|
-
seasonManager: "dbo:seasonManager";
|
|
3108
|
-
seasonNumber: "dbo:seasonNumber";
|
|
3109
|
-
seatNumber: "dbo:seatNumber";
|
|
3110
|
-
seatingCapacity: "dbo:seatingCapacity";
|
|
3111
|
-
second: "dbo:second";
|
|
3112
|
-
secondCommander: "dbo:secondCommander";
|
|
3113
|
-
secondDriver: "dbo:secondDriver";
|
|
3114
|
-
secondDriverCountry: "dbo:secondDriverCountry";
|
|
3115
|
-
secondLeader: "dbo:secondLeader";
|
|
3116
|
-
secondPlace: "dbo:secondPlace";
|
|
3117
|
-
secondPopularVote: "dbo:secondPopularVote";
|
|
3118
|
-
secondTeam: "dbo:secondTeam";
|
|
3119
|
-
secretaryGeneral: "dbo:secretaryGeneral";
|
|
3120
|
-
security: "dbo:security";
|
|
3121
|
-
seiyu: "dbo:seiyu";
|
|
3122
|
-
selection: "dbo:selection";
|
|
3123
|
-
selectionPoint: "dbo:selectionPoint";
|
|
3124
|
-
selectionYear: "dbo:selectionYear";
|
|
3125
|
-
selibrId: "dbo:selibrId";
|
|
3126
|
-
senator: "dbo:senator";
|
|
3127
|
-
senior: "dbo:senior";
|
|
3128
|
-
seniority: "dbo:seniority";
|
|
3129
|
-
seniunija: "dbo:seniunija";
|
|
3130
|
-
sentence: "dbo:sentence";
|
|
3131
|
-
series: "dbo:series";
|
|
3132
|
-
service: "dbo:service";
|
|
3133
|
-
serviceEndDate: "dbo:serviceEndDate";
|
|
3134
|
-
serviceEndYear: "dbo:serviceEndYear";
|
|
3135
|
-
serviceModule: "dbo:serviceModule";
|
|
3136
|
-
serviceNumber: "dbo:serviceNumber";
|
|
3137
|
-
serviceStartDate: "dbo:serviceStartDate";
|
|
3138
|
-
serviceStartYear: "dbo:serviceStartYear";
|
|
3139
|
-
servingRailwayLine: "dbo:servingRailwayLine";
|
|
3140
|
-
servingSize: "dbo:servingSize";
|
|
3141
|
-
servingTemperature: "dbo:servingTemperature";
|
|
3142
|
-
sessionNumber: "dbo:sessionNumber";
|
|
3143
|
-
setDesigner: "dbo:setDesigner";
|
|
3144
|
-
settingOfPlay: "dbo:settingOfPlay";
|
|
3145
|
-
settlement: "dbo:settlement";
|
|
3146
|
-
settlementAttached: "dbo:settlementAttached";
|
|
3147
|
-
setupTime: "dbo:setupTime";
|
|
3148
|
-
severeCases: "dbo:severeCases";
|
|
3149
|
-
sex: "dbo:sex";
|
|
3150
|
-
sexualOrientation: "dbo:sexualOrientation";
|
|
3151
|
-
shape: "dbo:shape";
|
|
3152
|
-
shareDate: "dbo:shareDate";
|
|
3153
|
-
shareOfAudience: "dbo:shareOfAudience";
|
|
3154
|
-
shareSource: "dbo:shareSource";
|
|
3155
|
-
sharingOutPopulation: "dbo:sharingOutPopulation";
|
|
3156
|
-
sharingOutPopulationYear: "dbo:sharingOutPopulationYear";
|
|
3157
|
-
sheading: "dbo:sheading";
|
|
3158
|
-
shipBeam: "dbo:shipBeam";
|
|
3159
|
-
shipCrew: "dbo:shipCrew";
|
|
3160
|
-
shipDisplacement: "dbo:shipDisplacement";
|
|
3161
|
-
shipDraft: "dbo:shipDraft";
|
|
3162
|
-
shipLaunch: "dbo:shipLaunch";
|
|
3163
|
-
shoeNumber: "dbo:shoeNumber";
|
|
3164
|
-
shoeSize: "dbo:shoeSize";
|
|
3165
|
-
shoot: "dbo:shoot";
|
|
3166
|
-
shoots: "dbo:shoots";
|
|
3167
|
-
shoreLength: "dbo:shoreLength";
|
|
3168
|
-
shortProgCompetition: "dbo:shortProgCompetition";
|
|
3169
|
-
shortProgScore: "dbo:shortProgScore";
|
|
3170
|
-
show: "dbo:show";
|
|
3171
|
-
showJudge: "dbo:showJudge";
|
|
3172
|
-
shuttle: "dbo:shuttle";
|
|
3173
|
-
sibling: "dbo:sibling";
|
|
3174
|
-
signName: "dbo:signName";
|
|
3175
|
-
signature: "dbo:signature";
|
|
3176
|
-
significantBuilding: "dbo:significantBuilding";
|
|
3177
|
-
significantDesign: "dbo:significantDesign";
|
|
3178
|
-
significantProject: "dbo:significantProject";
|
|
3179
|
-
silCode: "dbo:silCode";
|
|
3180
|
-
silverMedalDouble: "dbo:silverMedalDouble";
|
|
3181
|
-
silverMedalMixed: "dbo:silverMedalMixed";
|
|
3182
|
-
silverMedalSingle: "dbo:silverMedalSingle";
|
|
3183
|
-
silverMedalist: "dbo:silverMedalist";
|
|
3184
|
-
simcCode: "dbo:simcCode";
|
|
3185
|
-
similar: "dbo:similar";
|
|
3186
|
-
sire: "dbo:sire";
|
|
3187
|
-
siren: "dbo:siren";
|
|
3188
|
-
sister: "dbo:sister";
|
|
3189
|
-
sisterCollege: "dbo:sisterCollege";
|
|
3190
|
-
sisterNewspaper: "dbo:sisterNewspaper";
|
|
3191
|
-
sisterStation: "dbo:sisterStation";
|
|
3192
|
-
sixthFormStudents: "dbo:sixthFormStudents";
|
|
3193
|
-
sizeBlazon: "dbo:sizeBlazon";
|
|
3194
|
-
sizeLogo: "dbo:sizeLogo";
|
|
3195
|
-
sizeMap: "dbo:sizeMap";
|
|
3196
|
-
sizeThumbnail: "dbo:sizeThumbnail";
|
|
3197
|
-
size_v: "dbo:size_v";
|
|
3198
|
-
skiLift: "dbo:skiLift";
|
|
3199
|
-
skiPisteKilometre: "dbo:skiPisteKilometre";
|
|
3200
|
-
skiPisteNumber: "dbo:skiPisteNumber";
|
|
3201
|
-
skiTow: "dbo:skiTow";
|
|
3202
|
-
skills: "dbo:skills";
|
|
3203
|
-
skinColor: "dbo:skinColor";
|
|
3204
|
-
slogan: "dbo:slogan";
|
|
3205
|
-
smiles: "dbo:smiles";
|
|
3206
|
-
snowParkNumber: "dbo:snowParkNumber";
|
|
3207
|
-
soccerLeaguePromoted: "dbo:soccerLeaguePromoted";
|
|
3208
|
-
soccerLeagueRelegated: "dbo:soccerLeagueRelegated";
|
|
3209
|
-
soccerLeagueSeason: "dbo:soccerLeagueSeason";
|
|
3210
|
-
soccerLeagueWinner: "dbo:soccerLeagueWinner";
|
|
3211
|
-
soccerTournamentClosingSeason: "dbo:soccerTournamentClosingSeason";
|
|
3212
|
-
soccerTournamentLastChampion: "dbo:soccerTournamentLastChampion";
|
|
3213
|
-
soccerTournamentMostSteady: "dbo:soccerTournamentMostSteady";
|
|
3214
|
-
soccerTournamentMostSuccesfull: "dbo:soccerTournamentMostSuccesfull";
|
|
3215
|
-
soccerTournamentOpeningSeason: "dbo:soccerTournamentOpeningSeason";
|
|
3216
|
-
soccerTournamentThisSeason: "dbo:soccerTournamentThisSeason";
|
|
3217
|
-
soccerTournamentTopScorer: "dbo:soccerTournamentTopScorer";
|
|
3218
|
-
solicitorGeneral: "dbo:solicitorGeneral";
|
|
3219
|
-
solubility: "dbo:solubility";
|
|
3220
|
-
solvent: "dbo:solvent";
|
|
3221
|
-
solventWithBadSolubility: "dbo:solventWithBadSolubility";
|
|
3222
|
-
solventWithGoodSolubility: "dbo:solventWithGoodSolubility";
|
|
3223
|
-
solventWithMediocreSolubility: "dbo:solventWithMediocreSolubility";
|
|
3224
|
-
son: "dbo:son";
|
|
3225
|
-
soundRecording: "dbo:soundRecording";
|
|
3226
|
-
source: "dbo:source";
|
|
3227
|
-
sourceConfluence: "dbo:sourceConfluence";
|
|
3228
|
-
sourceConfluenceCountry: "dbo:sourceConfluenceCountry";
|
|
3229
|
-
sourceConfluenceElevation: "dbo:sourceConfluenceElevation";
|
|
3230
|
-
sourceConfluenceMountain: "dbo:sourceConfluenceMountain";
|
|
3231
|
-
sourceConfluencePlace: "dbo:sourceConfluencePlace";
|
|
3232
|
-
sourceConfluencePosition: "dbo:sourceConfluencePosition";
|
|
3233
|
-
sourceConfluenceRegion: "dbo:sourceConfluenceRegion";
|
|
3234
|
-
sourceConfluenceState: "dbo:sourceConfluenceState";
|
|
3235
|
-
sourceCountry: "dbo:sourceCountry";
|
|
3236
|
-
sourceDistrict: "dbo:sourceDistrict";
|
|
3237
|
-
sourceElevation: "dbo:sourceElevation";
|
|
3238
|
-
sourceMountain: "dbo:sourceMountain";
|
|
3239
|
-
sourceName: "dbo:sourceName";
|
|
3240
|
-
sourcePlace: "dbo:sourcePlace";
|
|
3241
|
-
sourcePosition: "dbo:sourcePosition";
|
|
3242
|
-
sourceRegion: "dbo:sourceRegion";
|
|
3243
|
-
sourceState: "dbo:sourceState";
|
|
3244
|
-
sourceText: "dbo:sourceText";
|
|
3245
|
-
sourceWebsite: "dbo:sourceWebsite";
|
|
3246
|
-
southEastPlace: "dbo:southEastPlace";
|
|
3247
|
-
southPlace: "dbo:southPlace";
|
|
3248
|
-
southWestPlace: "dbo:southWestPlace";
|
|
3249
|
-
sovereignCountry: "dbo:sovereignCountry";
|
|
3250
|
-
space: "dbo:space";
|
|
3251
|
-
spacecraft: "dbo:spacecraft";
|
|
3252
|
-
spacestation: "dbo:spacestation";
|
|
3253
|
-
spacewalkBegin: "dbo:spacewalkBegin";
|
|
3254
|
-
spacewalkEnd: "dbo:spacewalkEnd";
|
|
3255
|
-
speaker: "dbo:speaker";
|
|
3256
|
-
specialEffects: "dbo:specialEffects";
|
|
3257
|
-
specialTrial: "dbo:specialTrial";
|
|
3258
|
-
specialist: "dbo:specialist";
|
|
3259
|
-
speciality: "dbo:speciality";
|
|
3260
|
-
specialization: "dbo:specialization";
|
|
3261
|
-
species: "dbo:species";
|
|
3262
|
-
speedLimit: "dbo:speedLimit";
|
|
3263
|
-
spike: "dbo:spike";
|
|
3264
|
-
splitFromParty: "dbo:splitFromParty";
|
|
3265
|
-
spokenIn: "dbo:spokenIn";
|
|
3266
|
-
spokesperson: "dbo:spokesperson";
|
|
3267
|
-
sport: "dbo:sport";
|
|
3268
|
-
sportCountry: "dbo:sportCountry";
|
|
3269
|
-
sportDiscipline: "dbo:sportDiscipline";
|
|
3270
|
-
sportGoverningBody: "dbo:sportGoverningBody";
|
|
3271
|
-
sportSpecialty: "dbo:sportSpecialty";
|
|
3272
|
-
sportsFunction: "dbo:sportsFunction";
|
|
3273
|
-
spouse: "dbo:spouse";
|
|
3274
|
-
spouseName: "dbo:spouseName";
|
|
3275
|
-
spurOf: "dbo:spurOf";
|
|
3276
|
-
spurType: "dbo:spurType";
|
|
3277
|
-
squadNumber: "dbo:squadNumber";
|
|
3278
|
-
stadium: "dbo:stadium";
|
|
3279
|
-
staff: "dbo:staff";
|
|
3280
|
-
starRating: "dbo:starRating";
|
|
3281
|
-
starring: "dbo:starring";
|
|
3282
|
-
start: "dbo:start";
|
|
3283
|
-
startCareer: "dbo:startCareer";
|
|
3284
|
-
startDate: "dbo:startDate";
|
|
3285
|
-
startDateTime: "dbo:startDateTime";
|
|
3286
|
-
startOccupation: "dbo:startOccupation";
|
|
3287
|
-
startPoint: "dbo:startPoint";
|
|
3288
|
-
startReign: "dbo:startReign";
|
|
3289
|
-
startWct: "dbo:startWct";
|
|
3290
|
-
startWqs: "dbo:startWqs";
|
|
3291
|
-
startYear: "dbo:startYear";
|
|
3292
|
-
startYearOfInsertion: "dbo:startYearOfInsertion";
|
|
3293
|
-
startYearOfSales: "dbo:startYearOfSales";
|
|
3294
|
-
statName: "dbo:statName";
|
|
3295
|
-
statValue: "dbo:statValue";
|
|
3296
|
-
state: "dbo:state";
|
|
3297
|
-
stateDelegate: "dbo:stateDelegate";
|
|
3298
|
-
stateOfOrigin: "dbo:stateOfOrigin";
|
|
3299
|
-
stateOfOriginPoint: "dbo:stateOfOriginPoint";
|
|
3300
|
-
stateOfOriginTeam: "dbo:stateOfOriginTeam";
|
|
3301
|
-
stateOfOriginYear: "dbo:stateOfOriginYear";
|
|
3302
|
-
stationEvaDuration: "dbo:stationEvaDuration";
|
|
3303
|
-
stationStructure: "dbo:stationStructure";
|
|
3304
|
-
stationVisitDuration: "dbo:stationVisitDuration";
|
|
3305
|
-
statistic: "dbo:statistic";
|
|
3306
|
-
statisticLabel: "dbo:statisticLabel";
|
|
3307
|
-
statisticValue: "dbo:statisticValue";
|
|
3308
|
-
statisticYear: "dbo:statisticYear";
|
|
3309
|
-
status: "dbo:status";
|
|
3310
|
-
statusManager: "dbo:statusManager";
|
|
3311
|
-
statusYear: "dbo:statusYear";
|
|
3312
|
-
stellarClassification: "dbo:stellarClassification";
|
|
3313
|
-
stockExchange: "dbo:stockExchange";
|
|
3314
|
-
storyEditor: "dbo:storyEditor";
|
|
3315
|
-
strength: "dbo:strength";
|
|
3316
|
-
structuralSystem: "dbo:structuralSystem";
|
|
3317
|
-
student: "dbo:student";
|
|
3318
|
-
style: "dbo:style";
|
|
3319
|
-
stylisticOrigin: "dbo:stylisticOrigin";
|
|
3320
|
-
subClassis: "dbo:subClassis";
|
|
3321
|
-
subFamily: "dbo:subFamily";
|
|
3322
|
-
subGenus: "dbo:subGenus";
|
|
3323
|
-
subMunicipalityType: "dbo:subMunicipalityType";
|
|
3324
|
-
subOrder: "dbo:subOrder";
|
|
3325
|
-
subPrefecture: "dbo:subPrefecture";
|
|
3326
|
-
subTribus: "dbo:subTribus";
|
|
3327
|
-
subdivision: "dbo:subdivision";
|
|
3328
|
-
subdivisionLink: "dbo:subdivisionLink";
|
|
3329
|
-
subdivisionName: "dbo:subdivisionName";
|
|
3330
|
-
subdivisions: "dbo:subdivisions";
|
|
3331
|
-
subjectOfPlay: "dbo:subjectOfPlay";
|
|
3332
|
-
subjectTerm: "dbo:subjectTerm";
|
|
3333
|
-
sublimationPoint: "dbo:sublimationPoint";
|
|
3334
|
-
suborbitalFlights: "dbo:suborbitalFlights";
|
|
3335
|
-
subprefecture: "dbo:subprefecture";
|
|
3336
|
-
subregion: "dbo:subregion";
|
|
3337
|
-
subsequentInfrastructure: "dbo:subsequentInfrastructure";
|
|
3338
|
-
subsequentWork: "dbo:subsequentWork";
|
|
3339
|
-
subsequentWorkDate: "dbo:subsequentWorkDate";
|
|
3340
|
-
subsidiary: "dbo:subsidiary";
|
|
3341
|
-
subsystem: "dbo:subsystem";
|
|
3342
|
-
subsystemLink: "dbo:subsystemLink";
|
|
3343
|
-
subtitle: "dbo:subtitle";
|
|
3344
|
-
successfulLaunches: "dbo:successfulLaunches";
|
|
3345
|
-
successor: "dbo:successor";
|
|
3346
|
-
sudocId: "dbo:sudocId";
|
|
3347
|
-
summerAppearances: "dbo:summerAppearances";
|
|
3348
|
-
summerTemperature: "dbo:summerTemperature";
|
|
3349
|
-
superFamily: "dbo:superFamily";
|
|
3350
|
-
superOrder: "dbo:superOrder";
|
|
3351
|
-
superTribus: "dbo:superTribus";
|
|
3352
|
-
superbowlWin: "dbo:superbowlWin";
|
|
3353
|
-
superintendent: "dbo:superintendent";
|
|
3354
|
-
supplementalDraftRound: "dbo:supplementalDraftRound";
|
|
3355
|
-
supplementalDraftYear: "dbo:supplementalDraftYear";
|
|
3356
|
-
supplies: "dbo:supplies";
|
|
3357
|
-
supply: "dbo:supply";
|
|
3358
|
-
suppreddedDate: "dbo:suppreddedDate";
|
|
3359
|
-
surfaceArea: "dbo:surfaceArea";
|
|
3360
|
-
surfaceFormOccurrenceOffset: "dbo:surfaceFormOccurrenceOffset";
|
|
3361
|
-
surfaceGravity: "dbo:surfaceGravity";
|
|
3362
|
-
surfaceType: "dbo:surfaceType";
|
|
3363
|
-
suspectedCases: "dbo:suspectedCases";
|
|
3364
|
-
swimmingStyle: "dbo:swimmingStyle";
|
|
3365
|
-
symptom: "dbo:symptom";
|
|
3366
|
-
synonym: "dbo:synonym";
|
|
3367
|
-
systemOfLaw: "dbo:systemOfLaw";
|
|
3368
|
-
systemRequirements: "dbo:systemRequirements";
|
|
3369
|
-
tag: "dbo:tag";
|
|
3370
|
-
taoiseach: "dbo:taoiseach";
|
|
3371
|
-
targetAirport: "dbo:targetAirport";
|
|
3372
|
-
targetSpaceStation: "dbo:targetSpaceStation";
|
|
3373
|
-
taste: "dbo:taste";
|
|
3374
|
-
tattoo: "dbo:tattoo";
|
|
3375
|
-
taxon: "dbo:taxon";
|
|
3376
|
-
teachingStaff: "dbo:teachingStaff";
|
|
3377
|
-
team: "dbo:team";
|
|
3378
|
-
teamCoached: "dbo:teamCoached";
|
|
3379
|
-
teamManager: "dbo:teamManager";
|
|
3380
|
-
teamName: "dbo:teamName";
|
|
3381
|
-
teamPoint: "dbo:teamPoint";
|
|
3382
|
-
teamSize: "dbo:teamSize";
|
|
3383
|
-
teamTitle: "dbo:teamTitle";
|
|
3384
|
-
technique: "dbo:technique";
|
|
3385
|
-
televisionSeries: "dbo:televisionSeries";
|
|
3386
|
-
tempPlace: "dbo:tempPlace";
|
|
3387
|
-
temperature: "dbo:temperature";
|
|
3388
|
-
templateName: "dbo:templateName";
|
|
3389
|
-
temple: "dbo:temple";
|
|
3390
|
-
templeYear: "dbo:templeYear";
|
|
3391
|
-
tenant: "dbo:tenant";
|
|
3392
|
-
tennisSurfaceType: "dbo:tennisSurfaceType";
|
|
3393
|
-
termOfOffice: "dbo:termOfOffice";
|
|
3394
|
-
termPeriod: "dbo:termPeriod";
|
|
3395
|
-
territory: "dbo:territory";
|
|
3396
|
-
terytCode: "dbo:terytCode";
|
|
3397
|
-
tessitura: "dbo:tessitura";
|
|
3398
|
-
testaverage: "dbo:testaverage";
|
|
3399
|
-
theology: "dbo:theology";
|
|
3400
|
-
third: "dbo:third";
|
|
3401
|
-
thirdCommander: "dbo:thirdCommander";
|
|
3402
|
-
thirdDriver: "dbo:thirdDriver";
|
|
3403
|
-
thirdDriverCountry: "dbo:thirdDriverCountry";
|
|
3404
|
-
thirdPlace: "dbo:thirdPlace";
|
|
3405
|
-
thirdTeam: "dbo:thirdTeam";
|
|
3406
|
-
throwingSide: "dbo:throwingSide";
|
|
3407
|
-
thumbnail: "dbo:thumbnail";
|
|
3408
|
-
thumbnailCaption: "dbo:thumbnailCaption";
|
|
3409
|
-
tie: "dbo:tie";
|
|
3410
|
-
timeInSpace: "dbo:timeInSpace";
|
|
3411
|
-
timeZone: "dbo:timeZone";
|
|
3412
|
-
timeshiftChannel: "dbo:timeshiftChannel";
|
|
3413
|
-
title: "dbo:title";
|
|
3414
|
-
titleDate: "dbo:titleDate";
|
|
3415
|
-
titleDouble: "dbo:titleDouble";
|
|
3416
|
-
titleLanguage: "dbo:titleLanguage";
|
|
3417
|
-
titleSingle: "dbo:titleSingle";
|
|
3418
|
-
toll: "dbo:toll";
|
|
3419
|
-
tonyAward: "dbo:tonyAward";
|
|
3420
|
-
topFloorHeight: "dbo:topFloorHeight";
|
|
3421
|
-
topLevelDomain: "dbo:topLevelDomain";
|
|
3422
|
-
topSpeed: "dbo:topSpeed";
|
|
3423
|
-
topic: "dbo:topic";
|
|
3424
|
-
torchBearer: "dbo:torchBearer";
|
|
3425
|
-
torqueOutput: "dbo:torqueOutput";
|
|
3426
|
-
totalCargo: "dbo:totalCargo";
|
|
3427
|
-
totalDiscs: "dbo:totalDiscs";
|
|
3428
|
-
totalIliCases: "dbo:totalIliCases";
|
|
3429
|
-
totalLaunches: "dbo:totalLaunches";
|
|
3430
|
-
totalMass: "dbo:totalMass";
|
|
3431
|
-
totalPopulation: "dbo:totalPopulation";
|
|
3432
|
-
totalTracks: "dbo:totalTracks";
|
|
3433
|
-
totalTravellers: "dbo:totalTravellers";
|
|
3434
|
-
totalVaccinations: "dbo:totalVaccinations";
|
|
3435
|
-
totalVaccinationsPerHundred: "dbo:totalVaccinationsPerHundred";
|
|
3436
|
-
touristicSite: "dbo:touristicSite";
|
|
3437
|
-
tournamentOfChampions: "dbo:tournamentOfChampions";
|
|
3438
|
-
tournamentRecord: "dbo:tournamentRecord";
|
|
3439
|
-
towerHeight: "dbo:towerHeight";
|
|
3440
|
-
trackLength: "dbo:trackLength";
|
|
3441
|
-
trackNumber: "dbo:trackNumber";
|
|
3442
|
-
trackWidth: "dbo:trackWidth";
|
|
3443
|
-
tradeMark: "dbo:tradeMark";
|
|
3444
|
-
tradingName: "dbo:tradingName";
|
|
3445
|
-
trainer: "dbo:trainer";
|
|
3446
|
-
trainerClub: "dbo:trainerClub";
|
|
3447
|
-
trainerYears: "dbo:trainerYears";
|
|
3448
|
-
training: "dbo:training";
|
|
3449
|
-
translatedMotto: "dbo:translatedMotto";
|
|
3450
|
-
translator: "dbo:translator";
|
|
3451
|
-
transmission: "dbo:transmission";
|
|
3452
|
-
treatment: "dbo:treatment";
|
|
3453
|
-
tribus: "dbo:tribus";
|
|
3454
|
-
trustee: "dbo:trustee";
|
|
3455
|
-
tuition: "dbo:tuition";
|
|
3456
|
-
tvComId: "dbo:tvComId";
|
|
3457
|
-
tvShow: "dbo:tvShow";
|
|
3458
|
-
twinCountry: "dbo:twinCountry";
|
|
3459
|
-
twinTown: "dbo:twinTown";
|
|
3460
|
-
typeCoordinate: "dbo:typeCoordinate";
|
|
3461
|
-
typeOfElectrification: "dbo:typeOfElectrification";
|
|
3462
|
-
typeOfGrain: "dbo:typeOfGrain";
|
|
3463
|
-
typeOfStorage: "dbo:typeOfStorage";
|
|
3464
|
-
typeOfYeast: "dbo:typeOfYeast";
|
|
3465
|
-
uRN: "dbo:uRN";
|
|
3466
|
-
uciCode: "dbo:uciCode";
|
|
3467
|
-
ulanId: "dbo:ulanId";
|
|
3468
|
-
umbrellaTitle: "dbo:umbrellaTitle";
|
|
3469
|
-
unNumber: "dbo:unNumber";
|
|
3470
|
-
uncle: "dbo:uncle";
|
|
3471
|
-
undraftedYear: "dbo:undraftedYear";
|
|
3472
|
-
unesco: "dbo:unesco";
|
|
3473
|
-
unicode: "dbo:unicode";
|
|
3474
|
-
uniprot: "dbo:uniprot";
|
|
3475
|
-
unitCost: "dbo:unitCost";
|
|
3476
|
-
unitaryAuthority: "dbo:unitaryAuthority";
|
|
3477
|
-
unitedStatesNationalBridgeId: "dbo:unitedStatesNationalBridgeId";
|
|
3478
|
-
university: "dbo:university";
|
|
3479
|
-
unknownOutcomes: "dbo:unknownOutcomes";
|
|
3480
|
-
unloCode: "dbo:unloCode";
|
|
3481
|
-
updated: "dbo:updated";
|
|
3482
|
-
upperAge: "dbo:upperAge";
|
|
3483
|
-
urbanArea: "dbo:urbanArea";
|
|
3484
|
-
usOpenDouble: "dbo:usOpenDouble";
|
|
3485
|
-
usOpenMixed: "dbo:usOpenMixed";
|
|
3486
|
-
usOpenSingle: "dbo:usOpenSingle";
|
|
3487
|
-
usSales: "dbo:usSales";
|
|
3488
|
-
usedInWar: "dbo:usedInWar";
|
|
3489
|
-
uses: "dbo:uses";
|
|
3490
|
-
usingCountry: "dbo:usingCountry";
|
|
3491
|
-
usk: "dbo:usk";
|
|
3492
|
-
usopenWins: "dbo:usopenWins";
|
|
3493
|
-
usurper: "dbo:usurper";
|
|
3494
|
-
utcOffset: "dbo:utcOffset";
|
|
3495
|
-
v_hb: "dbo:v_hb";
|
|
3496
|
-
vaccination: "dbo:vaccination";
|
|
3497
|
-
vaccine: "dbo:vaccine";
|
|
3498
|
-
valvetrain: "dbo:valvetrain";
|
|
3499
|
-
vaporPressure: "dbo:vaporPressure";
|
|
3500
|
-
variantOf: "dbo:variantOf";
|
|
3501
|
-
varietals: "dbo:varietals";
|
|
3502
|
-
vehicle: "dbo:vehicle";
|
|
3503
|
-
vehicleCode: "dbo:vehicleCode";
|
|
3504
|
-
vehiclesInFleet: "dbo:vehiclesInFleet";
|
|
3505
|
-
vehiclesPerDay: "dbo:vehiclesPerDay";
|
|
3506
|
-
vein: "dbo:vein";
|
|
3507
|
-
veneratedIn: "dbo:veneratedIn";
|
|
3508
|
-
version: "dbo:version";
|
|
3509
|
-
viafId: "dbo:viafId";
|
|
3510
|
-
viceChancellor: "dbo:viceChancellor";
|
|
3511
|
-
viceLeader: "dbo:viceLeader";
|
|
3512
|
-
viceLeaderParty: "dbo:viceLeaderParty";
|
|
3513
|
-
vicePresident: "dbo:vicePresident";
|
|
3514
|
-
vicePrimeMinister: "dbo:vicePrimeMinister";
|
|
3515
|
-
vicePrincipal: "dbo:vicePrincipal";
|
|
3516
|
-
vicePrincipalLabel: "dbo:vicePrincipalLabel";
|
|
3517
|
-
victim: "dbo:victim";
|
|
3518
|
-
victims: "dbo:victims";
|
|
3519
|
-
victory: "dbo:victory";
|
|
3520
|
-
victoryAsMgr: "dbo:victoryAsMgr";
|
|
3521
|
-
victoryPercentageAsMgr: "dbo:victoryPercentageAsMgr";
|
|
3522
|
-
virtualChannel: "dbo:virtualChannel";
|
|
3523
|
-
visitorStatisticsAsOf: "dbo:visitorStatisticsAsOf";
|
|
3524
|
-
visitorsPerDay: "dbo:visitorsPerDay";
|
|
3525
|
-
visitorsPerYear: "dbo:visitorsPerYear";
|
|
3526
|
-
visitorsPercentageChange: "dbo:visitorsPercentageChange";
|
|
3527
|
-
visitorsTotal: "dbo:visitorsTotal";
|
|
3528
|
-
voice: "dbo:voice";
|
|
3529
|
-
voiceType: "dbo:voiceType";
|
|
3530
|
-
volcanicActivity: "dbo:volcanicActivity";
|
|
3531
|
-
volcanicType: "dbo:volcanicType";
|
|
3532
|
-
volcanoId: "dbo:volcanoId";
|
|
3533
|
-
voltageOfElectrification: "dbo:voltageOfElectrification";
|
|
3534
|
-
volume: "dbo:volume";
|
|
3535
|
-
volumeQuote: "dbo:volumeQuote";
|
|
3536
|
-
volumes: "dbo:volumes";
|
|
3537
|
-
vonKlitzingConstant: "dbo:vonKlitzingConstant";
|
|
3538
|
-
votesAgainst: "dbo:votesAgainst";
|
|
3539
|
-
votesFor: "dbo:votesFor";
|
|
3540
|
-
wagon: "dbo:wagon";
|
|
3541
|
-
waistSize: "dbo:waistSize";
|
|
3542
|
-
war: "dbo:war";
|
|
3543
|
-
ward: "dbo:ward";
|
|
3544
|
-
water: "dbo:water";
|
|
3545
|
-
waterArea: "dbo:waterArea";
|
|
3546
|
-
waterPercentage: "dbo:waterPercentage";
|
|
3547
|
-
watercourse: "dbo:watercourse";
|
|
3548
|
-
watershed: "dbo:watershed";
|
|
3549
|
-
waterwayThroughTunnel: "dbo:waterwayThroughTunnel";
|
|
3550
|
-
wavelength: "dbo:wavelength";
|
|
3551
|
-
weapon: "dbo:weapon";
|
|
3552
|
-
webcast: "dbo:webcast";
|
|
3553
|
-
websiteLabel: "dbo:websiteLabel";
|
|
3554
|
-
weddingParentsDate: "dbo:weddingParentsDate";
|
|
3555
|
-
weight: "dbo:weight";
|
|
3556
|
-
westPlace: "dbo:westPlace";
|
|
3557
|
-
whaDraft: "dbo:whaDraft";
|
|
3558
|
-
whaDraftTeam: "dbo:whaDraftTeam";
|
|
3559
|
-
whaDraftYear: "dbo:whaDraftYear";
|
|
3560
|
-
wheelbase: "dbo:wheelbase";
|
|
3561
|
-
wholeArea: "dbo:wholeArea";
|
|
3562
|
-
width: "dbo:width";
|
|
3563
|
-
widthQuote: "dbo:widthQuote";
|
|
3564
|
-
wikiPageCharacterSize: "dbo:wikiPageCharacterSize";
|
|
3565
|
-
wikiPageDisambiguates: "dbo:wikiPageDisambiguates";
|
|
3566
|
-
wikiPageEditLink: "dbo:wikiPageEditLink";
|
|
3567
|
-
wikiPageExternalLink: "dbo:wikiPageExternalLink";
|
|
3568
|
-
wikiPageExtracted: "dbo:wikiPageExtracted";
|
|
3569
|
-
wikiPageHistoryLink: "dbo:wikiPageHistoryLink";
|
|
3570
|
-
wikiPageID: "dbo:wikiPageID";
|
|
3571
|
-
wikiPageInDegree: "dbo:wikiPageInDegree";
|
|
3572
|
-
wikiPageInterLanguageLink: "dbo:wikiPageInterLanguageLink";
|
|
3573
|
-
wikiPageLength: "dbo:wikiPageLength";
|
|
3574
|
-
wikiPageModified: "dbo:wikiPageModified";
|
|
3575
|
-
wikiPageOutDegree: "dbo:wikiPageOutDegree";
|
|
3576
|
-
wikiPageRedirects: "dbo:wikiPageRedirects";
|
|
3577
|
-
wikiPageRevisionID: "dbo:wikiPageRevisionID";
|
|
3578
|
-
wikiPageRevisionLink: "dbo:wikiPageRevisionLink";
|
|
3579
|
-
wikiPageUsesTemplate: "dbo:wikiPageUsesTemplate";
|
|
3580
|
-
wikiPageWikiLink: "dbo:wikiPageWikiLink";
|
|
3581
|
-
wikiPageWikiLinkText: "dbo:wikiPageWikiLinkText";
|
|
3582
|
-
wikidataSplitIri: "dbo:wikidataSplitIri";
|
|
3583
|
-
wilaya: "dbo:wilaya";
|
|
3584
|
-
wimbledonDouble: "dbo:wimbledonDouble";
|
|
3585
|
-
wimbledonMixed: "dbo:wimbledonMixed";
|
|
3586
|
-
wimbledonSingle: "dbo:wimbledonSingle";
|
|
3587
|
-
wineProduced: "dbo:wineProduced";
|
|
3588
|
-
wineRegion: "dbo:wineRegion";
|
|
3589
|
-
wineYear: "dbo:wineYear";
|
|
3590
|
-
wingArea: "dbo:wingArea";
|
|
3591
|
-
wingspan: "dbo:wingspan";
|
|
3592
|
-
wins: "dbo:wins";
|
|
3593
|
-
winsAtAlpg: "dbo:winsAtAlpg";
|
|
3594
|
-
winsAtAsia: "dbo:winsAtAsia";
|
|
3595
|
-
winsAtAus: "dbo:winsAtAus";
|
|
3596
|
-
winsAtChallenges: "dbo:winsAtChallenges";
|
|
3597
|
-
winsAtChampionships: "dbo:winsAtChampionships";
|
|
3598
|
-
winsAtJLPGA: "dbo:winsAtJLPGA";
|
|
3599
|
-
winsAtJapan: "dbo:winsAtJapan";
|
|
3600
|
-
winsAtKLPGA: "dbo:winsAtKLPGA";
|
|
3601
|
-
winsAtLAGT: "dbo:winsAtLAGT";
|
|
3602
|
-
winsAtLET: "dbo:winsAtLET";
|
|
3603
|
-
winsAtLPGA: "dbo:winsAtLPGA";
|
|
3604
|
-
winsAtMajors: "dbo:winsAtMajors";
|
|
3605
|
-
winsAtNWIDE: "dbo:winsAtNWIDE";
|
|
3606
|
-
winsAtOtherTournaments: "dbo:winsAtOtherTournaments";
|
|
3607
|
-
winsAtPGA: "dbo:winsAtPGA";
|
|
3608
|
-
winsAtProTournaments: "dbo:winsAtProTournaments";
|
|
3609
|
-
winsAtSenEuro: "dbo:winsAtSenEuro";
|
|
3610
|
-
winsAtSun: "dbo:winsAtSun";
|
|
3611
|
-
winsInEurope: "dbo:winsInEurope";
|
|
3612
|
-
winterAppearances: "dbo:winterAppearances";
|
|
3613
|
-
winterTemperature: "dbo:winterTemperature";
|
|
3614
|
-
woRMS: "dbo:woRMS";
|
|
3615
|
-
wordBefore: "dbo:wordBefore";
|
|
3616
|
-
work: "dbo:work";
|
|
3617
|
-
workArea: "dbo:workArea";
|
|
3618
|
-
world: "dbo:world";
|
|
3619
|
-
worldChampionTitleYear: "dbo:worldChampionTitleYear";
|
|
3620
|
-
worldOpen: "dbo:worldOpen";
|
|
3621
|
-
worldTeamCup: "dbo:worldTeamCup";
|
|
3622
|
-
worldTournament: "dbo:worldTournament";
|
|
3623
|
-
worldTournamentBronze: "dbo:worldTournamentBronze";
|
|
3624
|
-
worldTournamentGold: "dbo:worldTournamentGold";
|
|
3625
|
-
worldTournamentSilver: "dbo:worldTournamentSilver";
|
|
3626
|
-
worstDefeat: "dbo:worstDefeat";
|
|
3627
|
-
wptFinalTable: "dbo:wptFinalTable";
|
|
3628
|
-
wptItm: "dbo:wptItm";
|
|
3629
|
-
wptTitle: "dbo:wptTitle";
|
|
3630
|
-
writer: "dbo:writer";
|
|
3631
|
-
wsopItm: "dbo:wsopItm";
|
|
3632
|
-
wsopWinYear: "dbo:wsopWinYear";
|
|
3633
|
-
wsopWristband: "dbo:wsopWristband";
|
|
3634
|
-
year: "dbo:year";
|
|
3635
|
-
yearElevationIntoNobility: "dbo:yearElevationIntoNobility";
|
|
3636
|
-
yearOfConstruction: "dbo:yearOfConstruction";
|
|
3637
|
-
yearOfElectrification: "dbo:yearOfElectrification";
|
|
3638
|
-
years: "dbo:years";
|
|
3639
|
-
youthClub: "dbo:youthClub";
|
|
3640
|
-
youthWing: "dbo:youthWing";
|
|
3641
|
-
youthYears: "dbo:youthYears";
|
|
3642
|
-
zdb: "dbo:zdb";
|
|
3643
|
-
zipCode: "dbo:zipCode";
|
|
3644
|
-
zodiacSign: "dbo:zodiacSign";
|
|
3645
|
-
} & {
|
|
3646
|
-
$prefix: "dbo:";
|
|
3647
|
-
$iri: "http://dbpedia.org/ontology/";
|
|
3648
|
-
};
|
|
3649
|
-
export default _default;
|