-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscored disjoint set.txt
3869 lines (3869 loc) · 401 KB
/
scored disjoint set.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
axiom,label
DisjointClasses(<http://dbpedia.org/ontology/OlympicResult> <http://dbpedia.org/ontology/LacrossePlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/AmericanFootballPlayer> <http://dbpedia.org/ontology/Agent>),0.011843664
DisjointClasses(<http://dbpedia.org/ontology/VolleyballPlayer> <http://www.w3.org/2002/07/owl#Thing>),0.006896552
DisjointClasses(<http://dbpedia.org/ontology/Arena> <http://www.w3.org/2002/07/owl#Thing>),0.571753986
DisjointClasses(<http://dbpedia.org/ontology/Museum> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.694170404
DisjointClasses(<http://dbpedia.org/ontology/Bank> <http://dbpedia.org/ontology/Lipid>),1
DisjointClasses(<http://dbpedia.org/ontology/Gymnast> <http://dbpedia.org/ontology/NaturalEvent>),1
DisjointClasses(<http://dbpedia.org/ontology/Genre> <http://dbpedia.org/ontology/Mammal>),0.999623258
DisjointClasses(<http://dbpedia.org/ontology/HorseRider> <http://dbpedia.org/ontology/Person>),0.078397213
DisjointClasses(<http://dbpedia.org/ontology/Producer> <http://dbpedia.org/ontology/Casino>),1
DisjointClasses(<http://dbpedia.org/ontology/VicePresident> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/Lymph> <http://www.w3.org/2002/07/owl#Thing>),0.091954023
DisjointClasses(<http://dbpedia.org/ontology/Parish> <http://dbpedia.org/ontology/Winery>),1
DisjointClasses(<http://dbpedia.org/ontology/FashionDesigner> <http://dbpedia.org/ontology/Person>),0.032653061
DisjointClasses(<http://dbpedia.org/ontology/BasketballTeam> <http://www.w3.org/2002/07/owl#Thing>),0.546027743
DisjointClasses(<http://dbpedia.org/ontology/Stream> <http://dbpedia.org/ontology/BodyOfWater>),0.035772717
DisjointClasses(<http://dbpedia.org/ontology/HumanGene> <http://dbpedia.org/ontology/BasketballTeam>),1
DisjointClasses(<http://dbpedia.org/ontology/Pope> <http://dbpedia.org/ontology/CultivatedVariety>),1
DisjointClasses(<http://dbpedia.org/ontology/HorseRider> <http://dbpedia.org/ontology/SnookerPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Ginkgo> <http://dbpedia.org/ontology/Plant>),0
DisjointClasses(<http://dbpedia.org/ontology/ClericalAdministrativeRegion> <http://dbpedia.org/ontology/Tax>),1
DisjointClasses(<http://dbpedia.org/ontology/VolleyballLeague> <http://dbpedia.org/ontology/Organisation>),0
DisjointClasses(<http://dbpedia.org/ontology/Abbey> <http://dbpedia.org/ontology/Work>),0.944767442
DisjointClasses(<http://dbpedia.org/ontology/Judge> <http://dbpedia.org/ontology/Person>),0.202592981
DisjointClasses(<http://dbpedia.org/ontology/CultivatedVariety> <http://dbpedia.org/ontology/Plant>),0.709627329
DisjointClasses(<http://dbpedia.org/ontology/Software> <http://dbpedia.org/ontology/Image>),0.999810072
DisjointClasses(<http://dbpedia.org/ontology/AustralianRulesFootballPlayer> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Deanery> <http://dbpedia.org/ontology/TelevisionHost>),1
DisjointClasses(<http://dbpedia.org/ontology/Brewery> <http://dbpedia.org/ontology/Agent>),0.500685871
DisjointClasses(<http://dbpedia.org/ontology/MeanOfTransportation> <http://dbpedia.org/ontology/Brain>),0.999419701
DisjointClasses(<http://dbpedia.org/ontology/Letter> <http://www.w3.org/2002/07/owl#Thing>),0.632442871
DisjointClasses(<http://dbpedia.org/ontology/Lawyer> <http://dbpedia.org/ontology/Person>),0.122566493
DisjointClasses(<http://dbpedia.org/ontology/Album> <http://dbpedia.org/ontology/Artwork>),1
DisjointClasses(<http://dbpedia.org/ontology/FilmFestival> <http://dbpedia.org/ontology/RailwayStation>),1
DisjointClasses(<http://dbpedia.org/ontology/RoadTunnel> <http://dbpedia.org/ontology/Tunnel>),0.541516245
DisjointClasses(<http://dbpedia.org/ontology/VolleyballCoach> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/HorseRace> <http://dbpedia.org/ontology/Race>),0.115273775
DisjointClasses(<http://dbpedia.org/ontology/GrandPrix> <http://dbpedia.org/ontology/SocietalEvent>),0.243860651
DisjointClasses(<http://dbpedia.org/ontology/AmericanFootballCoach> <http://dbpedia.org/ontology/OlympicEvent>),1
DisjointClasses(<http://dbpedia.org/ontology/Bodybuilder> <http://dbpedia.org/ontology/MotorsportRacer>),1
DisjointClasses(<http://dbpedia.org/ontology/LegalCase> <http://dbpedia.org/ontology/UnitOfWork>),0
DisjointClasses(<http://dbpedia.org/ontology/RailwayTunnel> <http://dbpedia.org/ontology/RouteOfTransportation>),0.239361702
DisjointClasses(<http://dbpedia.org/ontology/PoliticalParty> <http://dbpedia.org/ontology/Agent>),0.473946647
DisjointClasses(<http://dbpedia.org/ontology/Publisher> <http://dbpedia.org/ontology/District>),0.998537401
DisjointClasses(<http://dbpedia.org/ontology/Caterer> <http://dbpedia.org/ontology/Agent>),0.166666667
DisjointClasses(<http://dbpedia.org/ontology/OlympicEvent> <http://dbpedia.org/ontology/IceHockeyLeague>),0.999765533
DisjointClasses(<http://dbpedia.org/ontology/TopicalConcept> <http://dbpedia.org/ontology/MusicGenre>),0.095439444
DisjointClasses(<http://dbpedia.org/ontology/BeautyQueen> <http://www.w3.org/2002/07/owl#Thing>),0.061356707
DisjointClasses(<http://dbpedia.org/ontology/PowerStation> <http://dbpedia.org/ontology/Vicar>),1
DisjointClasses(<http://dbpedia.org/ontology/TopicalConcept> <http://dbpedia.org/ontology/Award>),0.999134449
DisjointClasses(<http://dbpedia.org/ontology/Publisher> <http://dbpedia.org/ontology/ComicsCharacter>),0.999414177
DisjointClasses(<http://dbpedia.org/ontology/Vein> <http://dbpedia.org/ontology/Planet>),1
DisjointClasses(<http://dbpedia.org/ontology/Prefecture> <http://dbpedia.org/ontology/GivenName>),1
DisjointClasses(<http://dbpedia.org/ontology/Meeting> <http://dbpedia.org/ontology/Spacecraft>),1
DisjointClasses(<http://dbpedia.org/ontology/Temple> <http://www.w3.org/2002/07/owl#Thing>),0.873111782
DisjointClasses(<http://dbpedia.org/ontology/ClubMoss> <http://www.w3.org/2002/07/owl#Thing>),0.01
DisjointClasses(<http://dbpedia.org/ontology/Airport> <http://dbpedia.org/ontology/Place>),0.295353048
DisjointClasses(<http://dbpedia.org/ontology/TelevisionSeason> <http://www.w3.org/2002/07/owl#Thing>),0.28125
DisjointClasses(<http://dbpedia.org/ontology/Windmill> <http://www.w3.org/2002/07/owl#Thing>),0.704545455
DisjointClasses(<http://dbpedia.org/ontology/VolleyballLeague> <http://dbpedia.org/ontology/SportsLeague>),0
DisjointClasses(<http://dbpedia.org/ontology/Astronaut> <http://dbpedia.org/ontology/Tax>),1
DisjointClasses(<http://dbpedia.org/ontology/SnookerChamp> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Monastery> <http://dbpedia.org/ontology/ResearchProject>),1
DisjointClasses(<http://dbpedia.org/ontology/SnookerPlayer> <http://dbpedia.org/ontology/Person>),0.00295858
DisjointClasses(<http://dbpedia.org/ontology/Mine> <http://www.w3.org/2002/07/owl#Thing>),0.864882943
DisjointClasses(<http://dbpedia.org/ontology/SpeedwayLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/SportsTeamMember> <http://dbpedia.org/ontology/Monarch>),1
DisjointClasses(<http://dbpedia.org/ontology/MilitaryVehicle> <http://dbpedia.org/ontology/GaelicGamesPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Swarm> <http://dbpedia.org/ontology/Celebrity>),1
DisjointClasses(<http://dbpedia.org/ontology/Deanery> <http://dbpedia.org/ontology/Airline>),1
DisjointClasses(<http://dbpedia.org/ontology/Cheese> <http://dbpedia.org/ontology/Port>),1
DisjointClasses(<http://dbpedia.org/ontology/Model> <http://www.w3.org/2002/07/owl#Thing>),0.362362525
DisjointClasses(<http://dbpedia.org/ontology/Atoll> <http://dbpedia.org/ontology/SportsEvent>),1
DisjointClasses(<http://dbpedia.org/ontology/PlayWright> <http://dbpedia.org/ontology/RacingDriver>),1
DisjointClasses(<http://dbpedia.org/ontology/Country> <http://dbpedia.org/ontology/Monument>),0.9970385
DisjointClasses(<http://dbpedia.org/ontology/MythologicalFigure> <http://www.w3.org/2002/07/owl#Thing>),0.25439408
DisjointClasses(<http://dbpedia.org/ontology/Mill> <http://www.w3.org/2002/07/owl#Thing>),0.748680739
DisjointClasses(<http://dbpedia.org/ontology/Host> <http://dbpedia.org/ontology/RouteOfTransportation>),1
DisjointClasses(<http://dbpedia.org/ontology/Contest> <http://www.w3.org/2002/07/owl#Thing>),0.799625468
DisjointClasses(<http://dbpedia.org/ontology/Congressman> <http://dbpedia.org/ontology/Politician>),0.007437071
DisjointClasses(<http://dbpedia.org/ontology/HistoricBuilding> <http://dbpedia.org/ontology/Place>),0.024360033
DisjointClasses(<http://dbpedia.org/ontology/Jockey> <http://dbpedia.org/ontology/Athletics>),1
DisjointClasses(<http://dbpedia.org/ontology/Royalty> <http://www.w3.org/2002/07/owl#Thing>),0.024587765
DisjointClasses(<http://dbpedia.org/ontology/Quote> <http://dbpedia.org/ontology/Album>),1
DisjointClasses(<http://dbpedia.org/ontology/HistoricPlace> <http://www.w3.org/2002/07/owl#Thing>),0.026840596
DisjointClasses(<http://dbpedia.org/ontology/BaseballSeason> <http://dbpedia.org/ontology/SportsSeason>),0.03654485
DisjointClasses(<http://dbpedia.org/ontology/Watermill> <http://dbpedia.org/ontology/ComicStrip>),1
DisjointClasses(<http://dbpedia.org/ontology/TelevisionEpisode> <http://dbpedia.org/ontology/Sculpture>),1
DisjointClasses(<http://dbpedia.org/ontology/TennisTournament> <http://dbpedia.org/ontology/SocietalEvent>),0
DisjointClasses(<http://dbpedia.org/ontology/MilitaryConflict> <http://dbpedia.org/ontology/Event>),0.491505939
DisjointClasses(<http://dbpedia.org/ontology/OlympicResult> <http://dbpedia.org/ontology/Cycad>),1
DisjointClasses(<http://dbpedia.org/ontology/Death> <http://dbpedia.org/ontology/Casino>),1
DisjointClasses(<http://dbpedia.org/ontology/Caterer> <http://dbpedia.org/ontology/Dancer>),1
DisjointClasses(<http://dbpedia.org/ontology/NationalFootballLeagueSeason> <http://dbpedia.org/ontology/Politician>),1
DisjointClasses(<http://dbpedia.org/ontology/OlympicEvent> <http://dbpedia.org/ontology/RaceHorse>),1
DisjointClasses(<http://dbpedia.org/ontology/Bridge> <http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete>),1
DisjointClasses(<http://dbpedia.org/ontology/Referee> <http://dbpedia.org/ontology/Agent>),0.233055266
DisjointClasses(<http://dbpedia.org/ontology/NCAATeamSeason> <http://dbpedia.org/ontology/Monument>),1
DisjointClasses(<http://dbpedia.org/ontology/Entomologist> <http://www.w3.org/2002/07/owl#Thing>),0.148768989
DisjointClasses(<http://dbpedia.org/ontology/Skater> <http://dbpedia.org/ontology/SportsLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/ScreenWriter> <http://dbpedia.org/ontology/Agent>),0.051763804
DisjointClasses(<http://dbpedia.org/ontology/IceHockeyPlayer> <http://dbpedia.org/ontology/WinterSportPlayer>),0.10431678
DisjointClasses(<http://dbpedia.org/ontology/Instrumentalist> <http://dbpedia.org/ontology/Agent>),0.014705882
DisjointClasses(<http://dbpedia.org/ontology/Parliament> <http://dbpedia.org/ontology/Organisation>),0.709119497
DisjointClasses(<http://dbpedia.org/ontology/IceHockeyPlayer> <http://dbpedia.org/ontology/Athlete>),0.101071081
DisjointClasses(<http://dbpedia.org/ontology/Article> <http://dbpedia.org/ontology/Cartoon>),0.770907473
DisjointClasses(<http://dbpedia.org/ontology/FictionalCharacter> <http://dbpedia.org/ontology/Person>),0.161672177
DisjointClasses(<http://dbpedia.org/ontology/Vein> <http://dbpedia.org/ontology/AnatomicalStructure>),0.289156627
DisjointClasses(<http://dbpedia.org/ontology/VoiceActor> <http://dbpedia.org/ontology/Park>),1
DisjointClasses(<http://dbpedia.org/ontology/AdministrativeRegion> <http://dbpedia.org/ontology/Place>),0.063619692
DisjointClasses(<http://dbpedia.org/ontology/RoadJunction> <http://dbpedia.org/ontology/Airport>),0.999932291
DisjointClasses(<http://dbpedia.org/ontology/Magazine> <http://dbpedia.org/ontology/Congressman>),1
DisjointClasses(<http://dbpedia.org/ontology/Contest> <http://dbpedia.org/ontology/Lake>),1
DisjointClasses(<http://dbpedia.org/ontology/Band> <http://dbpedia.org/ontology/Reptile>),0.999820241
DisjointClasses(<http://dbpedia.org/ontology/MicroRegion> <http://dbpedia.org/ontology/PopulatedPlace>),0.484848485
DisjointClasses(<http://dbpedia.org/ontology/Town> <http://dbpedia.org/ontology/Place>),0.177989483
DisjointClasses(<http://dbpedia.org/ontology/Mollusca> <http://dbpedia.org/ontology/Boxing>),1
DisjointClasses(<http://dbpedia.org/ontology/Locality> <http://dbpedia.org/ontology/Place>),0.543133803
DisjointClasses(<http://dbpedia.org/ontology/Convention> <http://dbpedia.org/ontology/Saint>),1
DisjointClasses(<http://dbpedia.org/ontology/Poet> <http://dbpedia.org/ontology/Agent>),0.163617228
DisjointClasses(<http://dbpedia.org/ontology/Novel> <http://dbpedia.org/ontology/WrittenWork>),0.291772513
DisjointClasses(<http://dbpedia.org/ontology/Department> <http://dbpedia.org/ontology/HorseRace>),1
DisjointClasses(<http://dbpedia.org/ontology/Dancer> <http://dbpedia.org/ontology/Person>),0.125646123
DisjointClasses(<http://dbpedia.org/ontology/AcademicJournal> <http://dbpedia.org/ontology/Book>),0.990724791
DisjointClasses(<http://dbpedia.org/ontology/Sculpture> <http://dbpedia.org/ontology/Artwork>),0.588685015
DisjointClasses(<http://dbpedia.org/ontology/Historian> <http://dbpedia.org/ontology/Agent>),0.181720923
DisjointClasses(<http://dbpedia.org/ontology/Theatre> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.76339609
DisjointClasses(<http://dbpedia.org/ontology/ComicStrip> <http://dbpedia.org/ontology/Work>),0.633724521
DisjointClasses(<http://dbpedia.org/ontology/OlympicResult> <http://dbpedia.org/ontology/SportCompetitionResult>),0
DisjointClasses(<http://dbpedia.org/ontology/Skier> <http://dbpedia.org/ontology/Name>),1
DisjointClasses(<http://dbpedia.org/ontology/Building> <http://dbpedia.org/ontology/Person>),0.994558839
DisjointClasses(<http://dbpedia.org/ontology/BritishRoyalty> <http://dbpedia.org/ontology/Genre>),1
DisjointClasses(<http://dbpedia.org/ontology/Lawyer> <http://dbpedia.org/ontology/TelevisionEpisode>),1
DisjointClasses(<http://dbpedia.org/ontology/Vicar> <http://dbpedia.org/ontology/Cleric>),0.9
DisjointClasses(<http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete> <http://dbpedia.org/ontology/Athlete>),0
DisjointClasses(<http://dbpedia.org/ontology/LacrossePlayer> <http://dbpedia.org/ontology/Surfer>),1
DisjointClasses(<http://dbpedia.org/ontology/SubMunicipality> <http://dbpedia.org/ontology/Casino>),1
DisjointClasses(<http://dbpedia.org/ontology/RailwayStation> <http://dbpedia.org/ontology/Philosopher>),1
DisjointClasses(<http://dbpedia.org/ontology/SpaceShuttle> <http://dbpedia.org/ontology/Theatre>),1
DisjointClasses(<http://dbpedia.org/ontology/Castle> <http://dbpedia.org/ontology/TelevisionSeason>),1
DisjointClasses(<http://dbpedia.org/ontology/FictionalCharacter> <http://dbpedia.org/ontology/Airline>),1
DisjointClasses(<http://dbpedia.org/ontology/Cycad> <http://dbpedia.org/ontology/Beer>),1
DisjointClasses(<http://dbpedia.org/ontology/Work> <http://www.w3.org/2002/07/owl#Thing>),0.311129623
DisjointClasses(<http://dbpedia.org/ontology/Biologist> <http://dbpedia.org/ontology/Agent>),0.115947231
DisjointClasses(<http://dbpedia.org/ontology/Area> <http://www.w3.org/2002/07/owl#Thing>),0.65875626
DisjointClasses(<http://dbpedia.org/ontology/PowerStation> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.092362679
DisjointClasses(<http://dbpedia.org/ontology/Canoeist> <http://dbpedia.org/ontology/Agent>),0.146982759
DisjointClasses(<http://dbpedia.org/ontology/AcademicJournal> <http://dbpedia.org/ontology/Comic>),1
DisjointClasses(<http://dbpedia.org/ontology/Monument> <http://www.w3.org/2002/07/owl#Thing>),0.729187233
DisjointClasses(<http://dbpedia.org/ontology/TelevisionShow> <http://dbpedia.org/ontology/Work>),0.393155793
DisjointClasses(<http://dbpedia.org/ontology/Capital> <http://dbpedia.org/ontology/PopulatedPlace>),0.530016225
DisjointClasses(<http://dbpedia.org/ontology/Cardinal> <http://dbpedia.org/ontology/Agent>),0.154506438
DisjointClasses(<http://dbpedia.org/ontology/Arachnid> <http://dbpedia.org/ontology/Eukaryote>),0.049557934
DisjointClasses(<http://dbpedia.org/ontology/FilmFestival> <http://dbpedia.org/ontology/IceHockeyPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Convention> <http://dbpedia.org/ontology/Tax>),1
DisjointClasses(<http://dbpedia.org/ontology/Singer> <http://dbpedia.org/ontology/Artist>),0.489273356
DisjointClasses(<http://dbpedia.org/ontology/Disease> <http://dbpedia.org/ontology/Deanery>),1
DisjointClasses(<http://dbpedia.org/ontology/Theatre> <http://dbpedia.org/ontology/CricketLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/LawFirm> <http://dbpedia.org/ontology/WrittenWork>),1
DisjointClasses(<http://dbpedia.org/ontology/NascarDriver> <http://dbpedia.org/ontology/Athlete>),0.063953488
DisjointClasses(<http://dbpedia.org/ontology/Linguist> <http://dbpedia.org/ontology/Person>),0.138332727
DisjointClasses(<http://dbpedia.org/ontology/HistoricBuilding> <http://dbpedia.org/ontology/Tunnel>),1
DisjointClasses(<http://dbpedia.org/ontology/Activity> <http://dbpedia.org/ontology/AmusementParkAttraction>),1
DisjointClasses(<http://dbpedia.org/ontology/Cave> <http://dbpedia.org/ontology/NaturalPlace>),0.572281959
DisjointClasses(<http://dbpedia.org/ontology/Beach> <http://dbpedia.org/ontology/Place>),0.78778626
DisjointClasses(<http://dbpedia.org/ontology/Mammal> <http://dbpedia.org/ontology/Lipid>),1
DisjointClasses(<http://dbpedia.org/ontology/RadioHost> <http://dbpedia.org/ontology/Person>),0.005063291
DisjointClasses(<http://dbpedia.org/ontology/CultivatedVariety> <http://dbpedia.org/ontology/Species>),0.695652174
DisjointClasses(<http://dbpedia.org/ontology/Asteroid> <http://dbpedia.org/ontology/SubMunicipality>),1
DisjointClasses(<http://dbpedia.org/ontology/Stream> <http://dbpedia.org/ontology/PoloLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Architect> <http://dbpedia.org/ontology/Person>),0.130088848
DisjointClasses(<http://dbpedia.org/ontology/Abbey> <http://dbpedia.org/ontology/Painter>),1
DisjointClasses(<http://dbpedia.org/ontology/ClericalAdministrativeRegion> <http://dbpedia.org/ontology/PopulatedPlace>),0
DisjointClasses(<http://dbpedia.org/ontology/Canoeist> <http://dbpedia.org/ontology/Surname>),1
DisjointClasses(<http://dbpedia.org/ontology/Orphan> <http://dbpedia.org/ontology/Presenter>),1
DisjointClasses(<http://dbpedia.org/ontology/Play> <http://dbpedia.org/ontology/WrittenWork>),0.606040852
DisjointClasses(<http://dbpedia.org/ontology/Reference> <http://dbpedia.org/ontology/Work>),0.911764706
DisjointClasses(<http://dbpedia.org/ontology/PopulatedPlace> <http://dbpedia.org/ontology/Grape>),1
DisjointClasses(<http://dbpedia.org/ontology/TableTennisPlayer> <http://dbpedia.org/ontology/CricketLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Street> <http://dbpedia.org/ontology/Amphibian>),1
DisjointClasses(<http://dbpedia.org/ontology/MixedMartialArtsEvent> <http://dbpedia.org/ontology/SoccerTournament>),1
DisjointClasses(<http://dbpedia.org/ontology/PeriodicalLiterature> <http://dbpedia.org/ontology/Village>),0.999902591
DisjointClasses(<http://dbpedia.org/ontology/Psychologist> <http://dbpedia.org/ontology/Nerve>),1
DisjointClasses(<http://dbpedia.org/ontology/Ship> <http://dbpedia.org/ontology/Automobile>),0.995488833
DisjointClasses(<http://dbpedia.org/ontology/Surfer> <http://dbpedia.org/ontology/Stream>),1
DisjointClasses(<http://dbpedia.org/ontology/HorseRider> <http://www.w3.org/2002/07/owl#Thing>),0.076655052
DisjointClasses(<http://dbpedia.org/ontology/Canoeist> <http://dbpedia.org/ontology/ChemicalSubstance>),1
DisjointClasses(<http://dbpedia.org/ontology/FigureSkater> <http://dbpedia.org/ontology/Village>),1
DisjointClasses(<http://dbpedia.org/ontology/Mountain> <http://dbpedia.org/ontology/Person>),0.997450121
DisjointClasses(<http://dbpedia.org/ontology/NCAATeamSeason> <http://dbpedia.org/ontology/VoiceActor>),1
DisjointClasses(<http://dbpedia.org/ontology/Single> <http://dbpedia.org/ontology/Vein>),1
DisjointClasses(<http://dbpedia.org/ontology/List> <http://dbpedia.org/ontology/Name>),0.992362093
DisjointClasses(<http://dbpedia.org/ontology/ComicsCreator> <http://dbpedia.org/ontology/Arena>),1
DisjointClasses(<http://dbpedia.org/ontology/Airline> <http://dbpedia.org/ontology/Organisation>),0.68890697
DisjointClasses(<http://dbpedia.org/ontology/Region> <http://dbpedia.org/ontology/AdministrativeRegion>),0.084450087
DisjointClasses(<http://dbpedia.org/ontology/ReligiousBuilding> <http://dbpedia.org/ontology/Chef>),1
DisjointClasses(<http://dbpedia.org/ontology/SnookerChamp> <http://dbpedia.org/ontology/VoiceActor>),1
DisjointClasses(<http://dbpedia.org/ontology/Type> <http://dbpedia.org/ontology/Genre>),0.98404583
DisjointClasses(<http://dbpedia.org/ontology/WaterwayTunnel> <http://dbpedia.org/ontology/Place>),0.2
DisjointClasses(<http://dbpedia.org/ontology/Watermill> <http://dbpedia.org/ontology/FictionalCharacter>),1
DisjointClasses(<http://dbpedia.org/ontology/Election> <http://dbpedia.org/ontology/SoccerManager>),1
DisjointClasses(<http://dbpedia.org/ontology/Lake> <http://dbpedia.org/ontology/Award>),1
DisjointClasses(<http://dbpedia.org/ontology/Diploma> <http://www.w3.org/2002/07/owl#Thing>),0.913043478
DisjointClasses(<http://dbpedia.org/ontology/EducationalInstitution> <http://www.w3.org/2002/07/owl#Thing>),2.84E-05
DisjointClasses(<http://dbpedia.org/ontology/Skater> <http://dbpedia.org/ontology/TennisLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/ClubMoss> <http://dbpedia.org/ontology/TelevisionSeason>),1
DisjointClasses(<http://dbpedia.org/ontology/ArchitecturalStructure> <http://dbpedia.org/ontology/Regency>),1
DisjointClasses(<http://dbpedia.org/ontology/TelevisionEpisode> <http://dbpedia.org/ontology/Novel>),1
DisjointClasses(<http://dbpedia.org/ontology/Ambassador> <http://dbpedia.org/ontology/Religious>),1
DisjointClasses(<http://dbpedia.org/ontology/Single> <http://dbpedia.org/ontology/Magazine>),1
DisjointClasses(<http://dbpedia.org/ontology/ProtectedArea> <http://dbpedia.org/ontology/Mosque>),1
DisjointClasses(<http://dbpedia.org/ontology/VideogamesLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/GovernmentAgency> <http://www.w3.org/2002/07/owl#Thing>),0.514040115
DisjointClasses(<http://dbpedia.org/ontology/Prefecture> <http://dbpedia.org/ontology/Place>),0.396341463
DisjointClasses(<http://dbpedia.org/ontology/OfficeHolder> <http://dbpedia.org/ontology/Agent>),0.001898666
DisjointClasses(<http://dbpedia.org/ontology/Singer> <http://dbpedia.org/ontology/Attack>),1
DisjointClasses(<http://dbpedia.org/ontology/Diocese> <http://dbpedia.org/ontology/PopulatedPlace>),0.209063595
DisjointClasses(<http://dbpedia.org/ontology/MilitaryPerson> <http://dbpedia.org/ontology/AmericanFootballCoach>),1
DisjointClasses(<http://dbpedia.org/ontology/Windmill> <http://dbpedia.org/ontology/Name>),1
DisjointClasses(<http://dbpedia.org/ontology/University> <http://www.w3.org/2002/07/owl#Thing>),0.596270416
DisjointClasses(<http://dbpedia.org/ontology/Locomotive> <http://dbpedia.org/ontology/MeanOfTransportation>),0.599663016
DisjointClasses(<http://dbpedia.org/ontology/RoadJunction> <http://dbpedia.org/ontology/Sculpture>),1
DisjointClasses(<http://dbpedia.org/ontology/Dog> <http://dbpedia.org/ontology/Infrastructure>),1
DisjointClasses(<http://dbpedia.org/ontology/Photographer> <http://dbpedia.org/ontology/Artist>),0.236660929
DisjointClasses(<http://dbpedia.org/ontology/Magazine> <http://dbpedia.org/ontology/HollywoodCartoon>),1
DisjointClasses(<http://dbpedia.org/ontology/Hotel> <http://dbpedia.org/ontology/Building>),0.40034662
DisjointClasses(<http://dbpedia.org/ontology/Biologist> <http://dbpedia.org/ontology/Device>),1
DisjointClasses(<http://dbpedia.org/ontology/AdministrativeRegion> <http://dbpedia.org/ontology/Asteroid>),1
DisjointClasses(<http://dbpedia.org/ontology/AnatomicalStructure> <http://dbpedia.org/ontology/WorldHeritageSite>),0.999207607
DisjointClasses(<http://dbpedia.org/ontology/Magazine> <http://dbpedia.org/ontology/TennisLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Sport> <http://dbpedia.org/ontology/SoccerTournament>),0.999492128
DisjointClasses(<http://dbpedia.org/ontology/Building> <http://dbpedia.org/ontology/WrestlingEvent>),1
DisjointClasses(<http://dbpedia.org/ontology/Plant> <http://www.w3.org/2002/07/owl#Thing>),0.046906953
DisjointClasses(<http://dbpedia.org/ontology/Capital> <http://dbpedia.org/ontology/Settlement>),0.554894538
DisjointClasses(<http://dbpedia.org/ontology/President> <http://dbpedia.org/ontology/Colour>),0.999471179
DisjointClasses(<http://dbpedia.org/ontology/Place> <http://www.w3.org/2002/07/owl#Thing>),0.222239057
DisjointClasses(<http://dbpedia.org/ontology/MilitaryPerson> <http://dbpedia.org/ontology/Person>),0.045910254
DisjointClasses(<http://dbpedia.org/ontology/RaceHorse> <http://dbpedia.org/ontology/Species>),0.155694156
DisjointClasses(<http://dbpedia.org/ontology/CricketLeague> <http://dbpedia.org/ontology/Dam>),1
DisjointClasses(<http://dbpedia.org/ontology/Artwork> <http://dbpedia.org/ontology/Mollusca>),1
DisjointClasses(<http://dbpedia.org/ontology/Poet> <http://dbpedia.org/ontology/HandballTeam>),1
DisjointClasses(<http://dbpedia.org/ontology/Stadium> <http://dbpedia.org/ontology/Arena>),0.629840547
DisjointClasses(<http://dbpedia.org/ontology/Temple> <http://dbpedia.org/ontology/Building>),0.914113077
DisjointClasses(<http://dbpedia.org/ontology/List> <http://dbpedia.org/ontology/Senator>),0.629884251
DisjointClasses(<http://dbpedia.org/ontology/BroadcastNetwork> <http://dbpedia.org/ontology/Organisation>),0.432727273
DisjointClasses(<http://dbpedia.org/ontology/NationalFootballLeagueSeason> <http://dbpedia.org/ontology/FootballLeagueSeason>),0.000644122
DisjointClasses(<http://dbpedia.org/ontology/Newspaper> <http://www.w3.org/2002/07/owl#Thing>),0.673984169
DisjointClasses(<http://dbpedia.org/ontology/Host> <http://dbpedia.org/ontology/Moss>),1
DisjointClasses(<http://dbpedia.org/ontology/SpeedwayLeague> <http://dbpedia.org/ontology/SportsLeague>),0
DisjointClasses(<http://dbpedia.org/ontology/Skater> <http://www.w3.org/2002/07/owl#Thing>),0.160600809
DisjointClasses(<http://dbpedia.org/ontology/ShoppingMall> <http://dbpedia.org/ontology/Economist>),1
DisjointClasses(<http://dbpedia.org/ontology/RugbyLeague> <http://dbpedia.org/ontology/SportsLeague>),0.80952381
DisjointClasses(<http://dbpedia.org/ontology/Sound> <http://dbpedia.org/ontology/BasketballTeam>),0.999159311
DisjointClasses(<http://dbpedia.org/ontology/MountainPass> <http://www.w3.org/2002/07/owl#Thing>),0.284210526
DisjointClasses(<http://dbpedia.org/ontology/Boxing> <http://dbpedia.org/ontology/Valley>),1
DisjointClasses(<http://dbpedia.org/ontology/TableTennisPlayer> <http://dbpedia.org/ontology/Person>),0
DisjointClasses(<http://dbpedia.org/ontology/Sculptor> <http://dbpedia.org/ontology/BaseballLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Engineer> <http://dbpedia.org/ontology/Agent>),0.107530076
DisjointClasses(<http://dbpedia.org/ontology/AcademicJournal> <http://dbpedia.org/ontology/Pope>),1
DisjointClasses(<http://dbpedia.org/ontology/Rebellion> <http://dbpedia.org/ontology/Event>),0.854363028
DisjointClasses(<http://dbpedia.org/ontology/ClubMoss> <http://dbpedia.org/ontology/Artery>),1
DisjointClasses(<http://dbpedia.org/ontology/Agent> <http://dbpedia.org/ontology/BaseballTeam>),0.756984713
DisjointClasses(<http://dbpedia.org/ontology/Locality> <http://dbpedia.org/ontology/Reference>),1
DisjointClasses(<http://dbpedia.org/ontology/BasketballLeague> <http://dbpedia.org/ontology/Organisation>),0.738841978
DisjointClasses(<http://dbpedia.org/ontology/Swarm> <http://dbpedia.org/ontology/Bone>),1
DisjointClasses(<http://dbpedia.org/ontology/Divorce> <http://dbpedia.org/ontology/FashionDesigner>),1
DisjointClasses(<http://dbpedia.org/ontology/SnookerChamp> <http://dbpedia.org/ontology/SnookerPlayer>),0
DisjointClasses(<http://dbpedia.org/ontology/MountainPass> <http://dbpedia.org/ontology/Stadium>),1
DisjointClasses(<http://dbpedia.org/ontology/Bridge> <http://dbpedia.org/ontology/Station>),0.998865141
DisjointClasses(<http://dbpedia.org/ontology/Lawyer> <http://dbpedia.org/ontology/Guitar>),1
DisjointClasses(<http://dbpedia.org/ontology/BusCompany> <http://dbpedia.org/ontology/Surfer>),1
DisjointClasses(<http://dbpedia.org/ontology/Tower> <http://www.w3.org/2002/07/owl#Thing>),0.229371688
DisjointClasses(<http://dbpedia.org/ontology/PublicTransitSystem> <http://dbpedia.org/ontology/RouteOfTransportation>),0.995121951
DisjointClasses(<http://dbpedia.org/ontology/WinterSportPlayer> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Tunnel> <http://www.w3.org/2002/07/owl#Thing>),0.533039648
DisjointClasses(<http://dbpedia.org/ontology/Referee> <http://www.w3.org/2002/07/owl#Thing>),0.23096976
DisjointClasses(<http://dbpedia.org/ontology/Polyhedron> <http://dbpedia.org/ontology/Tower>),1
DisjointClasses(<http://dbpedia.org/ontology/Protein> <http://dbpedia.org/ontology/Biomolecule>),0.155705604
DisjointClasses(<http://dbpedia.org/ontology/SoccerTournament> <http://dbpedia.org/ontology/BaseballSeason>),1
DisjointClasses(<http://dbpedia.org/ontology/GridironFootballPlayer> <http://dbpedia.org/ontology/Philosopher>),1
DisjointClasses(<http://dbpedia.org/ontology/BasketballLeague> <http://www.w3.org/2002/07/owl#Thing>),0.700241255
DisjointClasses(<http://dbpedia.org/ontology/NationalFootballLeagueSeason> <http://dbpedia.org/ontology/SportsTeamSeason>),0.000644122
DisjointClasses(<http://dbpedia.org/ontology/NetballPlayer> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/MotorcycleRacingLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/MartialArtist> <http://dbpedia.org/ontology/Person>),0.027562713
DisjointClasses(<http://dbpedia.org/ontology/Caterer> <http://dbpedia.org/ontology/PublicTransitSystem>),1
DisjointClasses(<http://dbpedia.org/ontology/OlympicEvent> <http://dbpedia.org/ontology/Olympics>),0.013456091
DisjointClasses(<http://dbpedia.org/ontology/FootballLeagueSeason> <http://www.w3.org/2002/07/owl#Thing>),0.008394643
DisjointClasses(<http://dbpedia.org/ontology/RecordLabel> <http://dbpedia.org/ontology/Agent>),0.102000684
DisjointClasses(<http://dbpedia.org/ontology/WrittenWork> <http://dbpedia.org/ontology/Medicine>),1
DisjointClasses(<http://dbpedia.org/ontology/MythologicalFigure> <http://dbpedia.org/ontology/Polyhedron>),1
DisjointClasses(<http://dbpedia.org/ontology/Publisher> <http://dbpedia.org/ontology/VolleyballPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Aircraft> <http://dbpedia.org/ontology/TradeUnion>),1
DisjointClasses(<http://dbpedia.org/ontology/Manhwa> <http://dbpedia.org/ontology/Archeologist>),1
DisjointClasses(<http://dbpedia.org/ontology/OfficeHolder> <http://www.w3.org/2002/07/owl#Thing>),0.001844418
DisjointClasses(<http://dbpedia.org/ontology/Fern> <http://www.w3.org/2002/07/owl#Thing>),0.023346304
DisjointClasses(<http://dbpedia.org/ontology/TelevisionHost> <http://dbpedia.org/ontology/Presenter>),0
DisjointClasses(<http://dbpedia.org/ontology/Anime> <http://dbpedia.org/ontology/Legislature>),1
DisjointClasses(<http://dbpedia.org/ontology/AustralianFootballLeague> <http://dbpedia.org/ontology/SportsLeague>),0
DisjointClasses(<http://dbpedia.org/ontology/Animal> <http://dbpedia.org/ontology/Eukaryote>),0.00256415
DisjointClasses(<http://dbpedia.org/ontology/GreenAlga> <http://dbpedia.org/ontology/Song>),1
DisjointClasses(<http://dbpedia.org/ontology/VideoGame> <http://dbpedia.org/ontology/Software>),0.089266035
DisjointClasses(<http://dbpedia.org/ontology/TelevisionEpisode> <http://dbpedia.org/ontology/Painting>),1
DisjointClasses(<http://dbpedia.org/ontology/Lock> <http://dbpedia.org/ontology/EurovisionSongContestEntry>),1
DisjointClasses(<http://dbpedia.org/ontology/Judge> <http://www.w3.org/2002/07/owl#Thing>),0.203706129
DisjointClasses(<http://dbpedia.org/ontology/Building> <http://www.w3.org/2002/07/owl#Thing>),0.214113826
DisjointClasses(<http://dbpedia.org/ontology/SolarEclipse> <http://dbpedia.org/ontology/NaturalEvent>),0
DisjointClasses(<http://dbpedia.org/ontology/Boxer> <http://dbpedia.org/ontology/Station>),1
DisjointClasses(<http://dbpedia.org/ontology/LaunchPad> <http://dbpedia.org/ontology/Infrastructure>),0.13
DisjointClasses(<http://dbpedia.org/ontology/School> <http://www.w3.org/2002/07/owl#Thing>),0.559739815
DisjointClasses(<http://dbpedia.org/ontology/Casino> <http://dbpedia.org/ontology/Place>),0.868831169
DisjointClasses(<http://dbpedia.org/ontology/ComicsCharacter> <http://dbpedia.org/ontology/Place>),0.999414177
DisjointClasses(<http://dbpedia.org/ontology/WaterwayTunnel> <http://dbpedia.org/ontology/HorseRider>),1
DisjointClasses(<http://dbpedia.org/ontology/Crater> <http://www.w3.org/2002/07/owl#Thing>),0.79184367
DisjointClasses(<http://dbpedia.org/ontology/SpeedSkater> <http://dbpedia.org/ontology/PlayWright>),1
DisjointClasses(<http://dbpedia.org/ontology/AcademicJournal> <http://dbpedia.org/ontology/Work>),0.283423877
DisjointClasses(<http://dbpedia.org/ontology/Eukaryote> <http://dbpedia.org/ontology/Dog>),0.996503497
DisjointClasses(<http://dbpedia.org/ontology/School> <http://dbpedia.org/ontology/Agent>),0.606545704
DisjointClasses(<http://dbpedia.org/ontology/Singer> <http://dbpedia.org/ontology/MusicalArtist>),0.553243945
DisjointClasses(<http://dbpedia.org/ontology/Professor> <http://www.w3.org/2002/07/owl#Thing>),0.077427468
DisjointClasses(<http://dbpedia.org/ontology/Prefecture> <http://dbpedia.org/ontology/Region>),0.707317073
DisjointClasses(<http://dbpedia.org/ontology/Opera> <http://dbpedia.org/ontology/PeriodicalLiterature>),1
DisjointClasses(<http://dbpedia.org/ontology/Governor> <http://dbpedia.org/ontology/OrganisationMember>),1
DisjointClasses(<http://dbpedia.org/ontology/Skyscraper> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.161048689
DisjointClasses(<http://dbpedia.org/ontology/ClericalAdministrativeRegion> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/Document> <http://dbpedia.org/ontology/CareerStation>),1
DisjointClasses(<http://dbpedia.org/ontology/Birth> <http://www.w3.org/2002/07/owl#Thing>),0.777777778
DisjointClasses(<http://dbpedia.org/ontology/Constellation> <http://dbpedia.org/ontology/Presenter>),1
DisjointClasses(<http://dbpedia.org/ontology/Cartoon> <http://dbpedia.org/ontology/Poem>),1
DisjointClasses(<http://dbpedia.org/ontology/SportsManager> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/Stream> <http://dbpedia.org/ontology/NaturalPlace>),0.035640062
DisjointClasses(<http://dbpedia.org/ontology/Planet> <http://dbpedia.org/ontology/Dancer>),1
DisjointClasses(<http://dbpedia.org/ontology/Synagogue> <http://www.w3.org/2002/07/owl#Thing>),0.616546763
DisjointClasses(<http://dbpedia.org/ontology/Governor> <http://dbpedia.org/ontology/ClubMoss>),1
DisjointClasses(<http://dbpedia.org/ontology/Square> <http://dbpedia.org/ontology/Gene>),1
DisjointClasses(<http://dbpedia.org/ontology/Tunnel> <http://dbpedia.org/ontology/Bodybuilder>),1
DisjointClasses(<http://dbpedia.org/ontology/Single> <http://www.w3.org/2002/07/owl#Thing>),0.073285998
DisjointClasses(<http://dbpedia.org/ontology/AustralianFootballLeague> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/Article> <http://dbpedia.org/ontology/TelevisionShow>),0.727060419
DisjointClasses(<http://dbpedia.org/ontology/Architect> <http://dbpedia.org/ontology/Deputy>),1
DisjointClasses(<http://dbpedia.org/ontology/AcademicJournal> <http://dbpedia.org/ontology/Sound>),1
DisjointClasses(<http://dbpedia.org/ontology/RoadTunnel> <http://dbpedia.org/ontology/Infrastructure>),0.14801444
DisjointClasses(<http://dbpedia.org/ontology/ChemicalSubstance> <http://dbpedia.org/ontology/AmateurBoxer>),1
DisjointClasses(<http://dbpedia.org/ontology/Museum> <http://www.w3.org/2002/07/owl#Thing>),0.659192825
DisjointClasses(<http://dbpedia.org/ontology/Writer> <http://dbpedia.org/ontology/Artist>),0.738303563
DisjointClasses(<http://dbpedia.org/ontology/Manga> <http://www.w3.org/2002/07/owl#Thing>),0.042762284
DisjointClasses(<http://dbpedia.org/ontology/Event> <http://dbpedia.org/ontology/Instrumentalist>),1
DisjointClasses(<http://dbpedia.org/ontology/Country> <http://dbpedia.org/ontology/PopulatedPlace>),0.827391265
DisjointClasses(<http://dbpedia.org/ontology/AdministrativeRegion> <http://dbpedia.org/ontology/Region>),0.084450087
DisjointClasses(<http://dbpedia.org/ontology/List> <http://dbpedia.org/ontology/Medician>),0.643076923
DisjointClasses(<http://dbpedia.org/ontology/AdultActor> <http://dbpedia.org/ontology/VideoGame>),1
DisjointClasses(<http://dbpedia.org/ontology/Person> <http://dbpedia.org/ontology/Agent>),0.043392046
DisjointClasses(<http://dbpedia.org/ontology/CanadianFootballLeague> <http://dbpedia.org/ontology/SportsLeague>),0
DisjointClasses(<http://dbpedia.org/ontology/Depth> <http://dbpedia.org/ontology/SoccerLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Embryology> <http://dbpedia.org/ontology/AnatomicalStructure>),0.794258373
DisjointClasses(<http://dbpedia.org/ontology/Convention> <http://dbpedia.org/ontology/Event>),0.774676851
DisjointClasses(<http://dbpedia.org/ontology/MusicalWork> <http://dbpedia.org/ontology/Article>),0.67997292
DisjointClasses(<http://dbpedia.org/ontology/FieldHockeyLeague> <http://dbpedia.org/ontology/SportsLeague>),0
DisjointClasses(<http://dbpedia.org/ontology/BiologicalDatabase> <http://dbpedia.org/ontology/Disease>),0.997382199
DisjointClasses(<http://dbpedia.org/ontology/Comic> <http://dbpedia.org/ontology/RailwayStation>),1
DisjointClasses(<http://dbpedia.org/ontology/Comic> <http://dbpedia.org/ontology/Aristocrat>),1
DisjointClasses(<http://dbpedia.org/ontology/Star> <http://dbpedia.org/ontology/Locality>),1
DisjointClasses(<http://dbpedia.org/ontology/NetballPlayer> <http://dbpedia.org/ontology/Athlete>),0
DisjointClasses(<http://dbpedia.org/ontology/TennisLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Manga> <http://dbpedia.org/ontology/Work>),0.041699867
DisjointClasses(<http://dbpedia.org/ontology/RailwayTunnel> <http://dbpedia.org/ontology/Tournament>),1
DisjointClasses(<http://dbpedia.org/ontology/Star> <http://dbpedia.org/ontology/Disease>),1
DisjointClasses(<http://dbpedia.org/ontology/Altitude> <http://dbpedia.org/ontology/SportsManager>),1
DisjointClasses(<http://dbpedia.org/ontology/GridironFootballPlayer> <http://dbpedia.org/ontology/AmericanFootballPlayer>),0.050589363
DisjointClasses(<http://dbpedia.org/ontology/SportsTeamMember> <http://dbpedia.org/ontology/Annotation>),1
DisjointClasses(<http://dbpedia.org/ontology/Prefecture> <http://dbpedia.org/ontology/Referee>),1
DisjointClasses(<http://dbpedia.org/ontology/Opera> <http://dbpedia.org/ontology/Film>),0.996980155
DisjointClasses(<http://dbpedia.org/ontology/Ligament> <http://www.w3.org/2002/07/owl#Thing>),0.775510204
DisjointClasses(<http://dbpedia.org/ontology/SupremeCourtOfTheUnitedStatesCase> <http://dbpedia.org/ontology/UnitOfWork>),0
DisjointClasses(<http://dbpedia.org/ontology/Birth> <http://dbpedia.org/ontology/MotorsportRacer>),1
DisjointClasses(<http://dbpedia.org/ontology/ArtistDiscography> <http://www.w3.org/2002/07/owl#Thing>),0.258346404
DisjointClasses(<http://dbpedia.org/ontology/LegalCase> <http://dbpedia.org/ontology/FigureSkater>),1
DisjointClasses(<http://dbpedia.org/ontology/SumoWrestler> <http://dbpedia.org/ontology/Agent>),0.002155172
DisjointClasses(<http://dbpedia.org/ontology/SquashPlayer> <http://dbpedia.org/ontology/Person>),0.002444988
DisjointClasses(<http://dbpedia.org/ontology/VideoGame> <http://dbpedia.org/ontology/GolfCourse>),1
DisjointClasses(<http://dbpedia.org/ontology/Disease> <http://dbpedia.org/ontology/Non-ProfitOrganisation>),1
DisjointClasses(<http://dbpedia.org/ontology/Village> <http://dbpedia.org/ontology/Settlement>),0.365052506
DisjointClasses(<http://dbpedia.org/ontology/NaturalEvent> <http://dbpedia.org/ontology/Event>),0
DisjointClasses(<http://dbpedia.org/ontology/Memorial> <http://dbpedia.org/ontology/Place>),0.743073048
DisjointClasses(<http://dbpedia.org/ontology/Eukaryote> <http://dbpedia.org/ontology/Species>),0.000329604
DisjointClasses(<http://dbpedia.org/ontology/Tournament> <http://dbpedia.org/ontology/SocietalEvent>),0.585362626
DisjointClasses(<http://dbpedia.org/ontology/Mineral> <http://www.w3.org/2002/07/owl#Thing>),0.328252033
DisjointClasses(<http://dbpedia.org/ontology/Actor> <http://dbpedia.org/ontology/RollerCoaster>),1
DisjointClasses(<http://dbpedia.org/ontology/IceHockeyLeague> <http://dbpedia.org/ontology/Organisation>),0.905810782
DisjointClasses(<http://dbpedia.org/ontology/Deity> <http://www.w3.org/2002/07/owl#Thing>),0.909793814
DisjointClasses(<http://dbpedia.org/ontology/Song> <http://dbpedia.org/ontology/Letter>),1
DisjointClasses(<http://dbpedia.org/ontology/Street> <http://dbpedia.org/ontology/Place>),0.684317719
DisjointClasses(<http://dbpedia.org/ontology/BasketballPlayer> <http://dbpedia.org/ontology/Person>),0.001377702
DisjointClasses(<http://dbpedia.org/ontology/Single> <http://dbpedia.org/ontology/Article>),0.829661423
DisjointClasses(<http://dbpedia.org/ontology/Poem> <http://www.w3.org/2002/07/owl#Thing>),0.750325098
DisjointClasses(<http://dbpedia.org/ontology/Website> <http://dbpedia.org/ontology/Poem>),1
DisjointClasses(<http://dbpedia.org/ontology/Reptile> <http://www.w3.org/2002/07/owl#Thing>),0.01851519
DisjointClasses(<http://dbpedia.org/ontology/TradeUnion> <http://dbpedia.org/ontology/Currency>),1
DisjointClasses(<http://dbpedia.org/ontology/Skier> <http://dbpedia.org/ontology/Athlete>),0.510679197
DisjointClasses(<http://dbpedia.org/ontology/MemberOfParliament> <http://dbpedia.org/ontology/Person>),0.002884469
DisjointClasses(<http://dbpedia.org/ontology/SportsLeague> <http://www.w3.org/2002/07/owl#Thing>),0.093510119
DisjointClasses(<http://dbpedia.org/ontology/Film> <http://dbpedia.org/ontology/Article>),0.713122986
DisjointClasses(<http://dbpedia.org/ontology/CricketTeam> <http://dbpedia.org/ontology/SportsTeam>),0.515732924
DisjointClasses(<http://dbpedia.org/ontology/FieldHockeyLeague> <http://dbpedia.org/ontology/MusicalWork>),1
DisjointClasses(<http://dbpedia.org/ontology/Wrestler> <http://dbpedia.org/ontology/Wine>),1
DisjointClasses(<http://dbpedia.org/ontology/Bridge> <http://www.w3.org/2002/07/owl#Thing>),0.436920749
DisjointClasses(<http://dbpedia.org/ontology/CurlingLeague> <http://dbpedia.org/ontology/Model>),1
DisjointClasses(<http://dbpedia.org/ontology/Anime> <http://www.w3.org/2002/07/owl#Thing>),0.00958324
DisjointClasses(<http://dbpedia.org/ontology/Animal> <http://dbpedia.org/ontology/Weapon>),0.999834355
DisjointClasses(<http://dbpedia.org/ontology/TelevisionHost> <http://dbpedia.org/ontology/Person>),0
DisjointClasses(<http://dbpedia.org/ontology/Book> <http://dbpedia.org/ontology/Comic>),0.917872142
DisjointClasses(<http://dbpedia.org/ontology/Document> <http://dbpedia.org/ontology/Opera>),1
DisjointClasses(<http://dbpedia.org/ontology/RaceTrack> <http://dbpedia.org/ontology/Racecourse>),0.257352941
DisjointClasses(<http://dbpedia.org/ontology/Medicine> <http://dbpedia.org/ontology/Olympics>),1
DisjointClasses(<http://dbpedia.org/ontology/FootballMatch> <http://www.w3.org/2002/07/owl#Thing>),0.580730395
DisjointClasses(<http://dbpedia.org/ontology/Pyramid> <http://dbpedia.org/ontology/Place>),0.911764706
DisjointClasses(<http://dbpedia.org/ontology/Parish> <http://dbpedia.org/ontology/Poem>),1
DisjointClasses(<http://dbpedia.org/ontology/Hospital> <http://www.w3.org/2002/07/owl#Thing>),0.443791722
DisjointClasses(<http://dbpedia.org/ontology/Birth> <http://dbpedia.org/ontology/OlympicResult>),1
DisjointClasses(<http://dbpedia.org/ontology/Ocean> <http://www.w3.org/2002/07/owl#Thing>),0.336814621
DisjointClasses(<http://dbpedia.org/ontology/SquashPlayer> <http://dbpedia.org/ontology/ChemicalCompound>),1
DisjointClasses(<http://dbpedia.org/ontology/AustralianFootballLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/SoapCharacter> <http://dbpedia.org/ontology/FictionalCharacter>),0.002725857
DisjointClasses(<http://dbpedia.org/ontology/Ambassador> <http://dbpedia.org/ontology/Person>),0.229482072
DisjointClasses(<http://dbpedia.org/ontology/HollywoodCartoon> <http://www.w3.org/2002/07/owl#Thing>),0.041564792
DisjointClasses(<http://dbpedia.org/ontology/TelevisionShow> <http://www.w3.org/2002/07/owl#Thing>),0.383042037
DisjointClasses(<http://dbpedia.org/ontology/FormulaOneRacer> <http://dbpedia.org/ontology/RacingDriver>),0.212389381
DisjointClasses(<http://dbpedia.org/ontology/ClassicalMusicArtist> <http://dbpedia.org/ontology/Castle>),1
DisjointClasses(<http://dbpedia.org/ontology/HumanGeneLocation> <http://dbpedia.org/ontology/GeneLocation>),0
DisjointClasses(<http://dbpedia.org/ontology/Parish> <http://dbpedia.org/ontology/SpaceShuttle>),1
DisjointClasses(<http://dbpedia.org/ontology/Garden> <http://dbpedia.org/ontology/HorseRider>),1
DisjointClasses(<http://dbpedia.org/ontology/Brewery> <http://dbpedia.org/ontology/MythologicalFigure>),1
DisjointClasses(<http://dbpedia.org/ontology/Murderer> <http://dbpedia.org/ontology/Pyramid>),1
DisjointClasses(<http://dbpedia.org/ontology/VideoGame> <http://dbpedia.org/ontology/Work>),0.074223055
DisjointClasses(<http://dbpedia.org/ontology/PowerStation> <http://dbpedia.org/ontology/Place>),0.091234011
DisjointClasses(<http://dbpedia.org/ontology/GridironFootballPlayer> <http://dbpedia.org/ontology/Agent>),9.19E-05
DisjointClasses(<http://dbpedia.org/ontology/LacrossePlayer> <http://dbpedia.org/ontology/DartsPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Ambassador> <http://dbpedia.org/ontology/President>),0.949573136
DisjointClasses(<http://dbpedia.org/ontology/Bank> <http://dbpedia.org/ontology/Medician>),1
DisjointClasses(<http://dbpedia.org/ontology/Sport> <http://dbpedia.org/ontology/Murderer>),1
DisjointClasses(<http://dbpedia.org/ontology/AdultActor> <http://www.w3.org/2002/07/owl#Thing>),0.002587322
DisjointClasses(<http://dbpedia.org/ontology/Politician> <http://dbpedia.org/ontology/Agent>),0.212486406
DisjointClasses(<http://dbpedia.org/ontology/FormulaOneRacer> <http://dbpedia.org/ontology/Person>),0.095783446
DisjointClasses(<http://dbpedia.org/ontology/AdultActor> <http://dbpedia.org/ontology/BusCompany>),1
DisjointClasses(<http://dbpedia.org/ontology/Colour> <http://dbpedia.org/ontology/Beer>),1
DisjointClasses(<http://dbpedia.org/ontology/Article> <http://dbpedia.org/ontology/HorseRace>),0.920589177
DisjointClasses(<http://dbpedia.org/ontology/Actor> <http://dbpedia.org/ontology/RadioHost>),0.949367089
DisjointClasses(<http://dbpedia.org/ontology/Continent> <http://www.w3.org/2002/07/owl#Thing>),0.705494505
DisjointClasses(<http://dbpedia.org/ontology/Opera> <http://dbpedia.org/ontology/Work>),0.572044866
DisjointClasses(<http://dbpedia.org/ontology/SoccerLeague> <http://dbpedia.org/ontology/SportsLeague>),0.581530589
DisjointClasses(<http://dbpedia.org/ontology/Activity> <http://dbpedia.org/ontology/Person>),0.995016094
DisjointClasses(<http://dbpedia.org/ontology/Curler> <http://dbpedia.org/ontology/Ligament>),1
DisjointClasses(<http://dbpedia.org/ontology/SoccerLeague> <http://dbpedia.org/ontology/SoccerPlayer>),0.985863985
DisjointClasses(<http://dbpedia.org/ontology/BodyOfWater> <http://dbpedia.org/ontology/NaturalPlace>),0.023000567
DisjointClasses(<http://dbpedia.org/ontology/Play> <http://dbpedia.org/ontology/AdministrativeRegion>),1
DisjointClasses(<http://dbpedia.org/ontology/Gate> <http://dbpedia.org/ontology/Place>),0.865921788
DisjointClasses(<http://dbpedia.org/ontology/GolfLeague> <http://dbpedia.org/ontology/SportsLeague>),0
DisjointClasses(<http://dbpedia.org/ontology/SportsManager> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/PlayWright> <http://dbpedia.org/ontology/Agent>),0.106824926
DisjointClasses(<http://dbpedia.org/ontology/AcademicJournal> <http://dbpedia.org/ontology/PeriodicalLiterature>),0.316549622
DisjointClasses(<http://dbpedia.org/ontology/Letter> <http://dbpedia.org/ontology/President>),0.999678146
DisjointClasses(<http://dbpedia.org/ontology/Train> <http://dbpedia.org/ontology/HandballLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/HorseRace> <http://dbpedia.org/ontology/Event>),0.138648735
DisjointClasses(<http://dbpedia.org/ontology/Wine> <http://www.w3.org/2002/07/owl#Thing>),0.791970803
DisjointClasses(<http://dbpedia.org/ontology/Pope> <http://dbpedia.org/ontology/Agent>),0.09178744
DisjointClasses(<http://dbpedia.org/ontology/Company> <http://dbpedia.org/ontology/Profession>),0.948065173
DisjointClasses(<http://dbpedia.org/ontology/Sales> <http://dbpedia.org/ontology/ChemicalSubstance>),1
DisjointClasses(<http://dbpedia.org/ontology/Skater> <http://dbpedia.org/ontology/Athlete>),0.365684575
DisjointClasses(<http://dbpedia.org/ontology/Automobile> <http://dbpedia.org/ontology/MountainRange>),1
DisjointClasses(<http://dbpedia.org/ontology/RailwayTunnel> <http://dbpedia.org/ontology/Place>),0.218085106
DisjointClasses(<http://dbpedia.org/ontology/FormulaOneRacer> <http://dbpedia.org/ontology/Athlete>),0.209266007
DisjointClasses(<http://dbpedia.org/ontology/NCAATeamSeason> <http://dbpedia.org/ontology/SportsTeamSeason>),0.003159795
DisjointClasses(<http://dbpedia.org/ontology/BoardGame> <http://dbpedia.org/ontology/Game>),0.714285714
DisjointClasses(<http://dbpedia.org/ontology/Crater> <http://dbpedia.org/ontology/Ginkgo>),1
DisjointClasses(<http://dbpedia.org/ontology/NCAATeamSeason> <http://dbpedia.org/ontology/Ginkgo>),1
DisjointClasses(<http://dbpedia.org/ontology/Band> <http://dbpedia.org/ontology/Agent>),0.276893506
DisjointClasses(<http://dbpedia.org/ontology/Software> <http://dbpedia.org/ontology/Work>),0.294036249
DisjointClasses(<http://dbpedia.org/ontology/Film> <http://dbpedia.org/ontology/Road>),0.998372584
DisjointClasses(<http://dbpedia.org/ontology/AustralianFootballTeam> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/BaseballSeason> <http://dbpedia.org/ontology/SportsTeamSeason>),0.03654485
DisjointClasses(<http://dbpedia.org/ontology/VolleyballLeague> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/SportsTeam> <http://dbpedia.org/ontology/Caterer>),1
DisjointClasses(<http://dbpedia.org/ontology/Singer> <http://dbpedia.org/ontology/Person>),0.195566609
DisjointClasses(<http://dbpedia.org/ontology/Instrument> <http://dbpedia.org/ontology/Automobile>),0.999355789
DisjointClasses(<http://dbpedia.org/ontology/Church> <http://dbpedia.org/ontology/ReligiousBuilding>),0.755143001
DisjointClasses(<http://dbpedia.org/ontology/Continent> <http://dbpedia.org/ontology/PopulatedPlace>),0.947252747
DisjointClasses(<http://dbpedia.org/ontology/Flag> <http://www.w3.org/2002/07/owl#Thing>),0.741545894
DisjointClasses(<http://dbpedia.org/ontology/Magazine> <http://www.w3.org/2002/07/owl#Thing>),0.599390075
DisjointClasses(<http://dbpedia.org/ontology/Continent> <http://dbpedia.org/ontology/Ginkgo>),1
DisjointClasses(<http://dbpedia.org/ontology/CanadianFootballTeam> <http://dbpedia.org/ontology/Organisation>),0
DisjointClasses(<http://dbpedia.org/ontology/MixedMartialArtsLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/PlayboyPlaymate> <http://dbpedia.org/ontology/ReligiousBuilding>),1
DisjointClasses(<http://dbpedia.org/ontology/TelevisionEpisode> <http://dbpedia.org/ontology/Letter>),1
DisjointClasses(<http://dbpedia.org/ontology/Train> <http://www.w3.org/2002/07/owl#Thing>),0.703506311
DisjointClasses(<http://dbpedia.org/ontology/RouteOfTransportation> <http://dbpedia.org/ontology/Altitude>),1
DisjointClasses(<http://dbpedia.org/ontology/File> <http://dbpedia.org/ontology/Canal>),1
DisjointClasses(<http://dbpedia.org/ontology/PoliticalParty> <http://dbpedia.org/ontology/Race>),0.999916895
DisjointClasses(<http://dbpedia.org/ontology/Rocket> <http://dbpedia.org/ontology/RoadJunction>),1
DisjointClasses(<http://dbpedia.org/ontology/PlayboyPlaymate> <http://www.w3.org/2002/07/owl#Thing>),0.003610108
DisjointClasses(<http://dbpedia.org/ontology/Chancellor> <http://dbpedia.org/ontology/Agent>),0.076241135
DisjointClasses(<http://dbpedia.org/ontology/GivenName> <http://dbpedia.org/ontology/Humorist>),1
DisjointClasses(<http://dbpedia.org/ontology/Ship> <http://dbpedia.org/ontology/RaceHorse>),0.999306999
DisjointClasses(<http://dbpedia.org/ontology/Convention> <http://www.w3.org/2002/07/owl#Thing>),0.852232667
DisjointClasses(<http://dbpedia.org/ontology/Project> <http://dbpedia.org/ontology/Comedian>),1
DisjointClasses(<http://dbpedia.org/ontology/Hotel> <http://dbpedia.org/ontology/Biomolecule>),1
DisjointClasses(<http://dbpedia.org/ontology/MotorcycleRacingLeague> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/Magazine> <http://dbpedia.org/ontology/WrittenWork>),0.637371777
DisjointClasses(<http://dbpedia.org/ontology/AmericanFootballLeague> <http://dbpedia.org/ontology/Surname>),1
DisjointClasses(<http://dbpedia.org/ontology/FieldHockeyLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/SoccerClub> <http://dbpedia.org/ontology/Agent>),0.29574845
DisjointClasses(<http://dbpedia.org/ontology/Lighthouse> <http://www.w3.org/2002/07/owl#Thing>),0.076660988
DisjointClasses(<http://dbpedia.org/ontology/Mayor> <http://dbpedia.org/ontology/Person>),0.307322125
DisjointClasses(<http://dbpedia.org/ontology/MixedMartialArtsLeague> <http://dbpedia.org/ontology/List>),1
DisjointClasses(<http://dbpedia.org/ontology/Diploma> <http://dbpedia.org/ontology/Agent>),0.913043478
DisjointClasses(<http://dbpedia.org/ontology/RugbyClub> <http://dbpedia.org/ontology/SportsTeam>),0.226173542
DisjointClasses(<http://dbpedia.org/ontology/RoadTunnel> <http://dbpedia.org/ontology/Scientist>),1
DisjointClasses(<http://dbpedia.org/ontology/Hotel> <http://www.w3.org/2002/07/owl#Thing>),0.336915078
DisjointClasses(<http://dbpedia.org/ontology/Comic> <http://dbpedia.org/ontology/ArtistDiscography>),1
DisjointClasses(<http://dbpedia.org/ontology/CareerStation> <http://dbpedia.org/ontology/Fern>),1
DisjointClasses(<http://dbpedia.org/ontology/ArchitecturalStructure> <http://dbpedia.org/ontology/Museum>),0.694170404
DisjointClasses(<http://dbpedia.org/ontology/ClassicalMusicArtist> <http://dbpedia.org/ontology/MusicalArtist>),0.04
DisjointClasses(<http://dbpedia.org/ontology/Crustacean> <http://dbpedia.org/ontology/Animal>),0.010542169
DisjointClasses(<http://dbpedia.org/ontology/GovernmentAgency> <http://dbpedia.org/ontology/Agent>),0.546704871
DisjointClasses(<http://dbpedia.org/ontology/Star> <http://dbpedia.org/ontology/CelestialBody>),0.483920961
DisjointClasses(<http://dbpedia.org/ontology/MicroRegion> <http://dbpedia.org/ontology/AdministrativeRegion>),1
DisjointClasses(<http://dbpedia.org/ontology/Province> <http://dbpedia.org/ontology/Species>),0.99959984
DisjointClasses(<http://dbpedia.org/ontology/Mollusca> <http://dbpedia.org/ontology/Eukaryote>),0.004677865
DisjointClasses(<http://dbpedia.org/ontology/Agent> <http://dbpedia.org/ontology/Dancer>),0.124850895
DisjointClasses(<http://dbpedia.org/ontology/Poet> <http://www.w3.org/2002/07/owl#Thing>),0.158840674
DisjointClasses(<http://dbpedia.org/ontology/Grape> <http://dbpedia.org/ontology/Plant>),0.442622951
DisjointClasses(<http://dbpedia.org/ontology/Biathlete> <http://dbpedia.org/ontology/Person>),0.209497207
DisjointClasses(<http://dbpedia.org/ontology/ArtistDiscography> <http://dbpedia.org/ontology/Play>),1
DisjointClasses(<http://dbpedia.org/ontology/Painter> <http://www.w3.org/2002/07/owl#Thing>),0.146295972
DisjointClasses(<http://dbpedia.org/ontology/File> <http://dbpedia.org/ontology/Document>),1
DisjointClasses(<http://www.w3.org/2002/07/owl#Thing> <http://dbpedia.org/ontology/SportsSeason>),0
DisjointClasses(<http://dbpedia.org/ontology/Tunnel> <http://dbpedia.org/ontology/Place>),0.53010279
DisjointClasses(<http://dbpedia.org/ontology/WrestlingEvent> <http://dbpedia.org/ontology/Software>),1
DisjointClasses(<http://dbpedia.org/ontology/PlayboyPlaymate> <http://dbpedia.org/ontology/Person>),0.003610108
DisjointClasses(<http://dbpedia.org/ontology/Film> <http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete>),1
DisjointClasses(<http://dbpedia.org/ontology/LaunchPad> <http://dbpedia.org/ontology/Place>),0.13
DisjointClasses(<http://dbpedia.org/ontology/Murderer> <http://dbpedia.org/ontology/Person>),0.062068966
DisjointClasses(<http://dbpedia.org/ontology/Medicine> <http://www.w3.org/2002/07/owl#Thing>),0.018379135
DisjointClasses(<http://dbpedia.org/ontology/Abbey> <http://dbpedia.org/ontology/Building>),0.834302326
DisjointClasses(<http://dbpedia.org/ontology/Film> <http://dbpedia.org/ontology/Work>),0.16338339
DisjointClasses(<http://dbpedia.org/ontology/Celebrity> <http://dbpedia.org/ontology/Congressman>),1
DisjointClasses(<http://dbpedia.org/ontology/BodyOfWater> <http://dbpedia.org/ontology/Embryology>),1
DisjointClasses(<http://dbpedia.org/ontology/Bird> <http://www.w3.org/2002/07/owl#Thing>),0.043305053
DisjointClasses(<http://dbpedia.org/ontology/State> <http://dbpedia.org/ontology/Place>),0.774954072
DisjointClasses(<http://dbpedia.org/ontology/Competition> <http://www.w3.org/2002/07/owl#Thing>),0.767363869
DisjointClasses(<http://dbpedia.org/ontology/Newspaper> <http://dbpedia.org/ontology/TelevisionEpisode>),1
DisjointClasses(<http://dbpedia.org/ontology/Medicine> <http://dbpedia.org/ontology/Article>),0.587432172
DisjointClasses(<http://dbpedia.org/ontology/Locomotive> <http://www.w3.org/2002/07/owl#Thing>),0.565796125
DisjointClasses(<http://dbpedia.org/ontology/Sound> <http://dbpedia.org/ontology/Instrument>),0.999723909
DisjointClasses(<http://dbpedia.org/ontology/Skier> <http://dbpedia.org/ontology/WinterSportPlayer>),0.552968817
DisjointClasses(<http://dbpedia.org/ontology/Sculptor> <http://dbpedia.org/ontology/Artist>),0.18302583
DisjointClasses(<http://dbpedia.org/ontology/ComicsCreator> <http://dbpedia.org/ontology/Agent>),0.026681287
DisjointClasses(<http://dbpedia.org/ontology/MotorcycleRacingLeague> <http://dbpedia.org/ontology/SumoWrestler>),1
DisjointClasses(<http://dbpedia.org/ontology/Software> <http://dbpedia.org/ontology/Magazine>),0.999584142
DisjointClasses(<http://dbpedia.org/ontology/Ideology> <http://dbpedia.org/ontology/Rocket>),1
DisjointClasses(<http://dbpedia.org/ontology/Writer> <http://www.w3.org/2002/07/owl#Thing>),0.15463445
DisjointClasses(<http://dbpedia.org/ontology/Square> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.946349558
DisjointClasses(<http://dbpedia.org/ontology/Galaxy> <http://dbpedia.org/ontology/Community>),1
DisjointClasses(<http://dbpedia.org/ontology/Holiday> <http://www.w3.org/2002/07/owl#Thing>),0.494036697
DisjointClasses(<http://dbpedia.org/ontology/Fashion> <http://dbpedia.org/ontology/Humorist>),1
DisjointClasses(<http://dbpedia.org/ontology/MilitaryVehicle> <http://dbpedia.org/ontology/BoardGame>),1
DisjointClasses(<http://dbpedia.org/ontology/Archive> <http://dbpedia.org/ontology/Animal>),1
DisjointClasses(<http://dbpedia.org/ontology/RecordLabel> <http://dbpedia.org/ontology/Square>),0.999446903
DisjointClasses(<http://dbpedia.org/ontology/Star> <http://dbpedia.org/ontology/SoccerManager>),0.999806277
DisjointClasses(<http://dbpedia.org/ontology/Skier> <http://www.w3.org/2002/07/owl#Thing>),0.139256728
DisjointClasses(<http://dbpedia.org/ontology/Region> <http://www.w3.org/2002/07/owl#Thing>),0.133946506
DisjointClasses(<http://dbpedia.org/ontology/RollerCoaster> <http://dbpedia.org/ontology/Instrumentalist>),1
DisjointClasses(<http://dbpedia.org/ontology/BritishRoyalty> <http://dbpedia.org/ontology/ArchitecturalStructure>),1
DisjointClasses(<http://dbpedia.org/ontology/TableTennisPlayer> <http://dbpedia.org/ontology/Athlete>),0
DisjointClasses(<http://dbpedia.org/ontology/CricketLeague> <http://dbpedia.org/ontology/Ambassador>),1
DisjointClasses(<http://dbpedia.org/ontology/GridironFootballPlayer> <http://dbpedia.org/ontology/Flag>),1
DisjointClasses(<http://dbpedia.org/ontology/File> <http://dbpedia.org/ontology/Muscle>),1
DisjointClasses(<http://dbpedia.org/ontology/AcademicJournal> <http://dbpedia.org/ontology/BasketballLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/HistoricPlace> <http://dbpedia.org/ontology/Article>),0.939147657
DisjointClasses(<http://dbpedia.org/ontology/Glacier> <http://dbpedia.org/ontology/NaturalPlace>),0.721735503
DisjointClasses(<http://dbpedia.org/ontology/Poet> <http://dbpedia.org/ontology/Unknown>),1
DisjointClasses(<http://dbpedia.org/ontology/Coach> <http://dbpedia.org/ontology/OlympicEvent>),1
DisjointClasses(<http://dbpedia.org/ontology/Province> <http://dbpedia.org/ontology/AdministrativeRegion>),0.898759504
DisjointClasses(<http://dbpedia.org/ontology/Database> <http://dbpedia.org/ontology/BadmintonPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Grape> <http://dbpedia.org/ontology/FloweringPlant>),0.234982332
DisjointClasses(<http://dbpedia.org/ontology/VolleyballPlayer> <http://dbpedia.org/ontology/Monument>),1
DisjointClasses(<http://dbpedia.org/ontology/EthnicGroup> <http://dbpedia.org/ontology/Deanery>),1
DisjointClasses(<http://dbpedia.org/ontology/Zoo> <http://dbpedia.org/ontology/Place>),0.897172237
DisjointClasses(<http://dbpedia.org/ontology/MusicGenre> <http://www.w3.org/2002/07/owl#Thing>),0.083358502
DisjointClasses(<http://dbpedia.org/ontology/Parliament> <http://dbpedia.org/ontology/Hospital>),1
DisjointClasses(<http://dbpedia.org/ontology/MountainPass> <http://dbpedia.org/ontology/Place>),0.280921053
DisjointClasses(<http://dbpedia.org/ontology/Work> <http://dbpedia.org/ontology/RouteOfTransportation>),0.998788521
DisjointClasses(<http://dbpedia.org/ontology/Stadium> <http://dbpedia.org/ontology/RadioStation>),1
DisjointClasses(<http://dbpedia.org/ontology/Aircraft> <http://www.w3.org/2002/07/owl#Thing>),0.779102106
DisjointClasses(<http://dbpedia.org/ontology/List> <http://dbpedia.org/ontology/SoftballLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/TimePeriod> <http://dbpedia.org/ontology/Year>),0.425063506
DisjointClasses(<http://dbpedia.org/ontology/Medician> <http://dbpedia.org/ontology/Taxon>),1
DisjointClasses(<http://dbpedia.org/ontology/Atoll> <http://dbpedia.org/ontology/Island>),0.764444444
DisjointClasses(<http://dbpedia.org/ontology/Contest> <http://dbpedia.org/ontology/Event>),0.779026217
DisjointClasses(<http://dbpedia.org/ontology/MilitaryVehicle> <http://dbpedia.org/ontology/Automobile>),0.944444444
DisjointClasses(<http://dbpedia.org/ontology/ProgrammingLanguage> <http://dbpedia.org/ontology/Agglomeration>),1
DisjointClasses(<http://dbpedia.org/ontology/Lymph> <http://dbpedia.org/ontology/Stream>),1
DisjointClasses(<http://dbpedia.org/ontology/ComedyGroup> <http://dbpedia.org/ontology/Group>),0
DisjointClasses(<http://dbpedia.org/ontology/ComicsCreator> <http://dbpedia.org/ontology/Artist>),0.030336257
DisjointClasses(<http://dbpedia.org/ontology/EducationalInstitution> <http://dbpedia.org/ontology/Agent>),5.68E-05
DisjointClasses(<http://dbpedia.org/ontology/RaceHorse> <http://www.w3.org/2002/07/owl#Thing>),0.151305151
DisjointClasses(<http://dbpedia.org/ontology/Wrestler> <http://dbpedia.org/ontology/Agent>),0.11224658
DisjointClasses(<http://dbpedia.org/ontology/Film> <http://dbpedia.org/ontology/Album>),0.988671701
DisjointClasses(<http://dbpedia.org/ontology/Monastery> <http://dbpedia.org/ontology/Race>),1
DisjointClasses(<http://dbpedia.org/ontology/IceHockeyLeague> <http://dbpedia.org/ontology/Agent>),0.884833228
DisjointClasses(<http://dbpedia.org/ontology/Ship> <http://www.w3.org/2002/07/owl#Thing>),0.605714181
DisjointClasses(<http://dbpedia.org/ontology/TopicalConcept> <http://dbpedia.org/ontology/Genre>),0.135891518
DisjointClasses(<http://dbpedia.org/ontology/SoccerClub> <http://dbpedia.org/ontology/Genre>),0.999815203
DisjointClasses(<http://dbpedia.org/ontology/Dam> <http://dbpedia.org/ontology/Infrastructure>),0.397943641
DisjointClasses(<http://dbpedia.org/ontology/Airport> <http://dbpedia.org/ontology/Infrastructure>),0.326674713
DisjointClasses(<http://dbpedia.org/ontology/RugbyPlayer> <http://dbpedia.org/ontology/Company>),1
DisjointClasses(<http://dbpedia.org/ontology/AutomobileEngine> <http://dbpedia.org/ontology/Device>),0.000778008
DisjointClasses(<http://dbpedia.org/ontology/Racecourse> <http://www.w3.org/2002/07/owl#Thing>),0.183823529
DisjointClasses(<http://dbpedia.org/ontology/Rower> <http://dbpedia.org/ontology/Athlete>),0.694687131
DisjointClasses(<http://dbpedia.org/ontology/Agglomeration> <http://dbpedia.org/ontology/Fungus>),1
DisjointClasses(<http://dbpedia.org/ontology/AmericanFootballPlayer> <http://dbpedia.org/ontology/Athlete>),0.036489764
DisjointClasses(<http://dbpedia.org/ontology/Cemetery> <http://dbpedia.org/ontology/Camera>),1
DisjointClasses(<http://dbpedia.org/ontology/VicePresident> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/TennisTournament> <http://dbpedia.org/ontology/LacrosseLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Anime> <http://dbpedia.org/ontology/TelevisionShow>),0.856697125
DisjointClasses(<http://dbpedia.org/ontology/Abbey> <http://dbpedia.org/ontology/Department>),1
DisjointClasses(<http://dbpedia.org/ontology/Town> <http://dbpedia.org/ontology/SportFacility>),1
DisjointClasses(<http://dbpedia.org/ontology/Lake> <http://dbpedia.org/ontology/NaturalPlace>),0.184508686
DisjointClasses(<http://dbpedia.org/ontology/Song> <http://dbpedia.org/ontology/Sound>),1
DisjointClasses(<http://dbpedia.org/ontology/Curler> <http://dbpedia.org/ontology/Agent>),0.171378092
DisjointClasses(<http://dbpedia.org/ontology/Planet> <http://dbpedia.org/ontology/CultivatedVariety>),1
DisjointClasses(<http://dbpedia.org/ontology/Mosque> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.65603924
DisjointClasses(<http://dbpedia.org/ontology/Monastery> <http://dbpedia.org/ontology/Building>),0.768586903
DisjointClasses(<http://dbpedia.org/ontology/RollerCoaster> <http://www.w3.org/2002/07/owl#Thing>),0.098108747
DisjointClasses(<http://dbpedia.org/ontology/Mine> <http://dbpedia.org/ontology/Place>),0.859197324
DisjointClasses(<http://dbpedia.org/ontology/Town> <http://dbpedia.org/ontology/Settlement>),0.281014538
DisjointClasses(<http://dbpedia.org/ontology/Taxon> <http://dbpedia.org/ontology/SoccerLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/MixedMartialArtsEvent> <http://dbpedia.org/ontology/RailwayLine>),1
DisjointClasses(<http://dbpedia.org/ontology/Historian> <http://dbpedia.org/ontology/PeriodicalLiterature>),0.999805182
DisjointClasses(<http://dbpedia.org/ontology/EducationalInstitution> <http://dbpedia.org/ontology/Star>),1
DisjointClasses(<http://dbpedia.org/ontology/Presenter> <http://dbpedia.org/ontology/Agent>),0.155153306
DisjointClasses(<http://dbpedia.org/ontology/Cartoon> <http://dbpedia.org/ontology/Opera>),1
DisjointClasses(<http://dbpedia.org/ontology/TennisTournament> <http://dbpedia.org/ontology/MusicFestival>),1
DisjointClasses(<http://dbpedia.org/ontology/Saint> <http://dbpedia.org/ontology/Cleric>),0.212511091
DisjointClasses(<http://dbpedia.org/ontology/FootballMatch> <http://dbpedia.org/ontology/SportsEvent>),0.70199113
DisjointClasses(<http://dbpedia.org/ontology/Port> <http://dbpedia.org/ontology/Bridge>),1
DisjointClasses(<http://dbpedia.org/ontology/Reference> <http://www.w3.org/2002/07/owl#Thing>),0.823529412
DisjointClasses(<http://dbpedia.org/ontology/Contest> <http://dbpedia.org/ontology/Competition>),0.565543071
DisjointClasses(<http://dbpedia.org/ontology/SoccerClubSeason> <http://dbpedia.org/ontology/Ocean>),1
DisjointClasses(<http://dbpedia.org/ontology/Species> <http://www.w3.org/2002/07/owl#Thing>),0.006406841
DisjointClasses(<http://dbpedia.org/ontology/WaterRide> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/Train> <http://dbpedia.org/ontology/ChristianBishop>),1
DisjointClasses(<http://dbpedia.org/ontology/MountainRange> <http://dbpedia.org/ontology/CelestialBody>),1
DisjointClasses(<http://dbpedia.org/ontology/SportsTeam> <http://dbpedia.org/ontology/Song>),1
DisjointClasses(<http://dbpedia.org/ontology/Convention> <http://dbpedia.org/ontology/Skier>),1
DisjointClasses(<http://dbpedia.org/ontology/AdministrativeRegion> <http://dbpedia.org/ontology/PopulatedPlace>),0.071472234
DisjointClasses(<http://dbpedia.org/ontology/ArtificialSatellite> <http://dbpedia.org/ontology/GolfPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Death> <http://dbpedia.org/ontology/Insect>),1
DisjointClasses(<http://dbpedia.org/ontology/Gene> <http://dbpedia.org/ontology/Organisation>),1
DisjointClasses(<http://dbpedia.org/ontology/Restaurant> <http://dbpedia.org/ontology/RugbyPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/PlayboyPlaymate> <http://dbpedia.org/ontology/BritishRoyalty>),1
DisjointClasses(<http://dbpedia.org/ontology/Company> <http://dbpedia.org/ontology/LawFirm>),0.393596987
DisjointClasses(<http://dbpedia.org/ontology/Curler> <http://dbpedia.org/ontology/Archaea>),1
DisjointClasses(<http://dbpedia.org/ontology/Valley> <http://dbpedia.org/ontology/Flag>),1
DisjointClasses(<http://dbpedia.org/ontology/Meeting> <http://dbpedia.org/ontology/TennisLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Station> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.718842082
DisjointClasses(<http://dbpedia.org/ontology/City> <http://dbpedia.org/ontology/Settlement>),0.255533532
DisjointClasses(<http://dbpedia.org/ontology/Architect> <http://dbpedia.org/ontology/MilitaryStructure>),1
DisjointClasses(<http://dbpedia.org/ontology/InformationAppliance> <http://dbpedia.org/ontology/River>),1
DisjointClasses(<http://dbpedia.org/ontology/Ginkgo> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/TradeUnion> <http://dbpedia.org/ontology/Agent>),0.807462687
DisjointClasses(<http://dbpedia.org/ontology/Image> <http://dbpedia.org/ontology/Single>),1
DisjointClasses(<http://dbpedia.org/ontology/Psychologist> <http://dbpedia.org/ontology/Person>),0.117520712
DisjointClasses(<http://dbpedia.org/ontology/Bridge> <http://dbpedia.org/ontology/Contest>),1
DisjointClasses(<http://dbpedia.org/ontology/Galaxy> <http://www.w3.org/2002/07/owl#Thing>),0.665204678
DisjointClasses(<http://dbpedia.org/ontology/LacrossePlayer> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Noble> <http://dbpedia.org/ontology/ChemicalCompound>),1
DisjointClasses(<http://dbpedia.org/ontology/MotorcycleRider> <http://dbpedia.org/ontology/BasketballPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Astronaut> <http://dbpedia.org/ontology/GrandPrix>),1
DisjointClasses(<http://dbpedia.org/ontology/OrganisationMember> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/HistoricBuilding> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.027387834
DisjointClasses(<http://dbpedia.org/ontology/AcademicJournal> <http://dbpedia.org/ontology/Single>),1
DisjointClasses(<http://dbpedia.org/ontology/Monastery> <http://dbpedia.org/ontology/Restaurant>),1
DisjointClasses(<http://dbpedia.org/ontology/SupremeCourtOfTheUnitedStatesCase> <http://dbpedia.org/ontology/Sales>),1
DisjointClasses(<http://dbpedia.org/ontology/Philosopher> <http://www.w3.org/2002/07/owl#Thing>),0.218554687
DisjointClasses(<http://dbpedia.org/ontology/President> <http://dbpedia.org/ontology/Canoeist>),0.999784483
DisjointClasses(<http://dbpedia.org/ontology/MemberOfParliament> <http://www.w3.org/2002/07/owl#Thing>),0.002125399
DisjointClasses(<http://dbpedia.org/ontology/Humorist> <http://dbpedia.org/ontology/Artist>),0.608643457
DisjointClasses(<http://dbpedia.org/ontology/AdultActor> <http://dbpedia.org/ontology/Actor>),0.009055627
DisjointClasses(<http://dbpedia.org/ontology/LacrosseLeague> <http://dbpedia.org/ontology/SportsLeague>),0
DisjointClasses(<http://dbpedia.org/ontology/Arena> <http://dbpedia.org/ontology/SportFacility>),0.629840547
DisjointClasses(<http://dbpedia.org/ontology/IceHockeyLeague> <http://dbpedia.org/ontology/PrimeMinister>),1
DisjointClasses(<http://dbpedia.org/ontology/TelevisionStation> <http://dbpedia.org/ontology/Organisation>),0.470597791
DisjointClasses(<http://dbpedia.org/ontology/ChemicalSubstance> <http://www.w3.org/2002/07/owl#Thing>),0.001822822
DisjointClasses(<http://dbpedia.org/ontology/Road> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.782314711
DisjointClasses(<http://dbpedia.org/ontology/Church> <http://www.w3.org/2002/07/owl#Thing>),0.353615201
DisjointClasses(<http://dbpedia.org/ontology/City> <http://www.w3.org/2002/07/owl#Thing>),0.167063099
DisjointClasses(<http://dbpedia.org/ontology/SportsEvent> <http://dbpedia.org/ontology/SocietalEvent>),0.001597599
DisjointClasses(<http://dbpedia.org/ontology/MilitaryVehicle> <http://www.w3.org/2002/07/owl#Thing>),0.777777778
DisjointClasses(<http://dbpedia.org/ontology/SiteOfSpecialScientificInterest> <http://dbpedia.org/ontology/Event>),1
DisjointClasses(<http://dbpedia.org/ontology/CanadianFootballLeague> <http://dbpedia.org/ontology/Organisation>),0
DisjointClasses(<http://dbpedia.org/ontology/Food> <http://dbpedia.org/ontology/Cartoon>),0.99985172
DisjointClasses(<http://dbpedia.org/ontology/Hotel> <http://dbpedia.org/ontology/Professor>),1
DisjointClasses(<http://dbpedia.org/ontology/Presenter> <http://dbpedia.org/ontology/Person>),0.153921931
DisjointClasses(<http://dbpedia.org/ontology/Document> <http://dbpedia.org/ontology/Software>),0.994313211
DisjointClasses(<http://dbpedia.org/ontology/Comic> <http://dbpedia.org/ontology/ClassicalMusicComposition>),1
DisjointClasses(<http://dbpedia.org/ontology/ProgrammingLanguage> <http://dbpedia.org/ontology/Port>),0.997903564
DisjointClasses(<http://dbpedia.org/ontology/PublicTransitSystem> <http://dbpedia.org/ontology/PoloLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Prison> <http://dbpedia.org/ontology/Building>),0.499608457
DisjointClasses(<http://dbpedia.org/ontology/Airport> <http://www.w3.org/2002/07/owl#Thing>),0.296499698
DisjointClasses(<http://dbpedia.org/ontology/Farmer> <http://www.w3.org/2002/07/owl#Thing>),0.158745247
DisjointClasses(<http://dbpedia.org/ontology/Country> <http://dbpedia.org/ontology/File>),1
DisjointClasses(<http://www.w3.org/2002/07/owl#Thing> <http://dbpedia.org/ontology/NCAATeamSeason>),0.003159795
DisjointClasses(<http://dbpedia.org/ontology/Locomotive> <http://dbpedia.org/ontology/Aircraft>),1
DisjointClasses(<http://dbpedia.org/ontology/SquashPlayer> <http://dbpedia.org/ontology/BoardGame>),1
DisjointClasses(<http://dbpedia.org/ontology/HorseRace> <http://dbpedia.org/ontology/SocietalEvent>),0.144092219
DisjointClasses(<http://dbpedia.org/ontology/Venue> <http://dbpedia.org/ontology/Device>),1
DisjointClasses(<http://dbpedia.org/ontology/Celebrity> <http://dbpedia.org/ontology/Agent>),0.29245283
DisjointClasses(<http://dbpedia.org/ontology/Musical> <http://dbpedia.org/ontology/Hotel>),1
DisjointClasses(<http://dbpedia.org/ontology/Painting> <http://dbpedia.org/ontology/Opera>),1
DisjointClasses(<http://dbpedia.org/ontology/Skyscraper> <http://dbpedia.org/ontology/Caterer>),1
DisjointClasses(<http://dbpedia.org/ontology/Galaxy> <http://dbpedia.org/ontology/Place>),1
DisjointClasses(<http://dbpedia.org/ontology/Celebrity> <http://dbpedia.org/ontology/Artery>),1
DisjointClasses(<http://dbpedia.org/ontology/Genre> <http://dbpedia.org/ontology/MusicGenre>),0.064935065
DisjointClasses(<http://dbpedia.org/ontology/RadioStation> <http://dbpedia.org/ontology/Organisation>),0.071705768
DisjointClasses(<http://dbpedia.org/ontology/Colour> <http://dbpedia.org/ontology/VicePresident>),1
DisjointClasses(<http://dbpedia.org/ontology/Lieutenant> <http://dbpedia.org/ontology/Country>),1
DisjointClasses(<http://dbpedia.org/ontology/SquashPlayer> <http://dbpedia.org/ontology/Athlete>),0.002444988
DisjointClasses(<http://dbpedia.org/ontology/Cave> <http://dbpedia.org/ontology/HumanGene>),1
DisjointClasses(<http://dbpedia.org/ontology/Archipelago> <http://dbpedia.org/ontology/Place>),0.57293666
DisjointClasses(<http://dbpedia.org/ontology/Magazine> <http://dbpedia.org/ontology/Painting>),1
DisjointClasses(<http://dbpedia.org/ontology/SpaceShuttle> <http://dbpedia.org/ontology/SoccerManager>),1
DisjointClasses(<http://dbpedia.org/ontology/Musical> <http://www.w3.org/2002/07/owl#Thing>),0.637724551
DisjointClasses(<http://dbpedia.org/ontology/MotorsportRacer> <http://dbpedia.org/ontology/Meeting>),1
DisjointClasses(<http://dbpedia.org/ontology/Band> <http://dbpedia.org/ontology/Bone>),1
DisjointClasses(<http://dbpedia.org/ontology/GaelicGamesPlayer> <http://www.w3.org/2002/07/owl#Thing>),0.041924592
DisjointClasses(<http://dbpedia.org/ontology/Library> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.565910999
DisjointClasses(<http://dbpedia.org/ontology/SpaceShuttle> <http://dbpedia.org/ontology/MeanOfTransportation>),0.32
DisjointClasses(<http://dbpedia.org/ontology/Constellation> <http://dbpedia.org/ontology/CelestialBody>),0.852348993
DisjointClasses(<http://dbpedia.org/ontology/MilitaryVehicle> <http://dbpedia.org/ontology/RailwayStation>),1
DisjointClasses(<http://dbpedia.org/ontology/Farmer> <http://dbpedia.org/ontology/Person>),0.161121673
DisjointClasses(<http://dbpedia.org/ontology/Judge> <http://dbpedia.org/ontology/Priest>),0.9990005
DisjointClasses(<http://dbpedia.org/ontology/Jockey> <http://dbpedia.org/ontology/Person>),0.162460568
DisjointClasses(<http://dbpedia.org/ontology/Farmer> <http://dbpedia.org/ontology/MixedMartialArtsLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Monastery> <http://dbpedia.org/ontology/Gene>),1
DisjointClasses(<http://dbpedia.org/ontology/Article> <http://dbpedia.org/ontology/CelestialBody>),0.759653475
DisjointClasses(<http://dbpedia.org/ontology/City> <http://dbpedia.org/ontology/Valley>),0.998425197
DisjointClasses(<http://dbpedia.org/ontology/SupremeCourtOfTheUnitedStatesCase> <http://dbpedia.org/ontology/LegalCase>),0
DisjointClasses(<http://dbpedia.org/ontology/Race> <http://dbpedia.org/ontology/SportsEvent>),0.640509514
DisjointClasses(<http://dbpedia.org/ontology/Producer> <http://www.w3.org/2002/07/owl#Thing>),0.170604682
DisjointClasses(<http://dbpedia.org/ontology/Province> <http://dbpedia.org/ontology/Architect>),1
DisjointClasses(<http://dbpedia.org/ontology/SpaceStation> <http://dbpedia.org/ontology/Sport>),1
DisjointClasses(<http://dbpedia.org/ontology/Sea> <http://dbpedia.org/ontology/Place>),0.79787234
DisjointClasses(<http://dbpedia.org/ontology/WineRegion> <http://dbpedia.org/ontology/Colour>),1
DisjointClasses(<http://dbpedia.org/ontology/Murderer> <http://dbpedia.org/ontology/SpeedwayRider>),1
DisjointClasses(<http://dbpedia.org/ontology/Library> <http://dbpedia.org/ontology/HandballLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Comic> <http://dbpedia.org/ontology/Website>),1
DisjointClasses(<http://dbpedia.org/ontology/LaunchPad> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.13
DisjointClasses(<http://dbpedia.org/ontology/District> <http://www.w3.org/2002/07/owl#Thing>),0.549678334
DisjointClasses(<http://dbpedia.org/ontology/Boxer> <http://dbpedia.org/ontology/Athlete>),0.493469995
DisjointClasses(<http://dbpedia.org/ontology/ArtistDiscography> <http://dbpedia.org/ontology/HollywoodCartoon>),1
DisjointClasses(<http://dbpedia.org/ontology/ClubMoss> <http://dbpedia.org/ontology/Species>),0.01
DisjointClasses(<http://dbpedia.org/ontology/Mineral> <http://dbpedia.org/ontology/ChemicalSubstance>),0.37804878
DisjointClasses(<http://dbpedia.org/ontology/Gate> <http://www.w3.org/2002/07/owl#Thing>),0.87150838
DisjointClasses(<http://dbpedia.org/ontology/Cardinal> <http://dbpedia.org/ontology/SoccerClubSeason>),1
DisjointClasses(<http://dbpedia.org/ontology/TelevisionSeason> <http://dbpedia.org/ontology/Work>),0.468911082
DisjointClasses(<http://dbpedia.org/ontology/Broadcaster> <http://dbpedia.org/ontology/Vein>),1
DisjointClasses(<http://dbpedia.org/ontology/Food> <http://dbpedia.org/ontology/FormulaOneTeam>),1
DisjointClasses(<http://dbpedia.org/ontology/RailwayStation> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.112267995
DisjointClasses(<http://dbpedia.org/ontology/Rower> <http://dbpedia.org/ontology/Person>),0.220070838
DisjointClasses(<http://dbpedia.org/ontology/Entomologist> <http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete>),1
DisjointClasses(<http://dbpedia.org/ontology/ArchitecturalStructure> <http://dbpedia.org/ontology/SpaceShuttle>),1
DisjointClasses(<http://dbpedia.org/ontology/Shrine> <http://dbpedia.org/ontology/ReligiousBuilding>),0.944962687
DisjointClasses(<http://dbpedia.org/ontology/VolleyballLeague> <http://dbpedia.org/ontology/Race>),1
DisjointClasses(<http://dbpedia.org/ontology/CollegeCoach> <http://dbpedia.org/ontology/WaterRide>),1
DisjointClasses(<http://dbpedia.org/ontology/District> <http://dbpedia.org/ontology/AdministrativeRegion>),0.805661353
DisjointClasses(<http://dbpedia.org/ontology/RadioProgram> <http://dbpedia.org/ontology/Work>),0.552750225
DisjointClasses(<http://dbpedia.org/ontology/Winery> <http://dbpedia.org/ontology/MotorcycleRider>),1
DisjointClasses(<http://dbpedia.org/ontology/Camera> <http://dbpedia.org/ontology/Curler>),1
DisjointClasses(<http://dbpedia.org/ontology/ComicsCreator> <http://dbpedia.org/ontology/Ginkgo>),1
DisjointClasses(<http://dbpedia.org/ontology/Game> <http://www.w3.org/2002/07/owl#Thing>),0.346802479
DisjointClasses(<http://dbpedia.org/ontology/Noble> <http://dbpedia.org/ontology/Agent>),0.017857143
DisjointClasses(<http://dbpedia.org/ontology/SnookerPlayer> <http://dbpedia.org/ontology/Athlete>),0.00591716
DisjointClasses(<http://dbpedia.org/ontology/Canoeist> <http://www.w3.org/2002/07/owl#Thing>),0.146982759
DisjointClasses(<http://dbpedia.org/ontology/Hotel> <http://dbpedia.org/ontology/Protein>),1
DisjointClasses(<http://dbpedia.org/ontology/Volcano> <http://dbpedia.org/ontology/Economist>),1
DisjointClasses(<http://dbpedia.org/ontology/Group> <http://dbpedia.org/ontology/WinterSportPlayer>),0.998604257
DisjointClasses(<http://dbpedia.org/ontology/Glacier> <http://dbpedia.org/ontology/Pope>),1
DisjointClasses(<http://dbpedia.org/ontology/Province> <http://dbpedia.org/ontology/Device>),1
DisjointClasses(<http://dbpedia.org/ontology/Species> <http://dbpedia.org/ontology/Eukaryote>),0.000329604
DisjointClasses(<http://dbpedia.org/ontology/Amphibian> <http://dbpedia.org/ontology/Species>),0.011835548
DisjointClasses(<http://dbpedia.org/ontology/Dam> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.390898705
DisjointClasses(<http://dbpedia.org/ontology/Priest> <http://www.w3.org/2002/07/owl#Thing>),0.190154923
DisjointClasses(<http://dbpedia.org/ontology/Regency> <http://www.w3.org/2002/07/owl#Thing>),0.427272727
DisjointClasses(<http://dbpedia.org/ontology/SocietalEvent> <http://www.w3.org/2002/07/owl#Thing>),0.04122989
DisjointClasses(<http://dbpedia.org/ontology/AdultActor> <http://dbpedia.org/ontology/RadioProgram>),1
DisjointClasses(<http://dbpedia.org/ontology/SolarEclipse> <http://dbpedia.org/ontology/Event>),0
DisjointClasses(<http://dbpedia.org/ontology/VoiceActor> <http://dbpedia.org/ontology/Egyptologist>),1
DisjointClasses(<http://dbpedia.org/ontology/Baronet> <http://dbpedia.org/ontology/Royalty>),0.873354982
DisjointClasses(<http://dbpedia.org/ontology/CricketLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Band> <http://dbpedia.org/ontology/Royalty>),0.999317007
DisjointClasses(<http://dbpedia.org/ontology/DartsPlayer> <http://dbpedia.org/ontology/Athlete>),0.001908397
DisjointClasses(<http://dbpedia.org/ontology/CollegeCoach> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/MicroRegion> <http://dbpedia.org/ontology/Place>),0.484848485
DisjointClasses(<http://dbpedia.org/ontology/Gene> <http://dbpedia.org/ontology/Airline>),1
DisjointClasses(<http://dbpedia.org/ontology/Town> <http://dbpedia.org/ontology/PopulatedPlace>),0.230856789
DisjointClasses(<http://dbpedia.org/ontology/SpeedwayRider> <http://dbpedia.org/ontology/MotorcycleRider>),0.116687578
DisjointClasses(<http://dbpedia.org/ontology/Engineer> <http://www.w3.org/2002/07/owl#Thing>),0.105450765
DisjointClasses(<http://dbpedia.org/ontology/GreenAlga> <http://www.w3.org/2002/07/owl#Thing>),0.016058394
DisjointClasses(<http://dbpedia.org/ontology/Tax> <http://dbpedia.org/ontology/Aristocrat>),1
DisjointClasses(<http://dbpedia.org/ontology/TelevisionStation> <http://dbpedia.org/ontology/Broadcaster>),0.471247563
DisjointClasses(<http://dbpedia.org/ontology/MusicalWork> <http://dbpedia.org/ontology/Image>),0.999987802
DisjointClasses(<http://dbpedia.org/ontology/Jockey> <http://dbpedia.org/ontology/Artery>),1
DisjointClasses(<http://dbpedia.org/ontology/AustralianRulesFootballPlayer> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/InlineHockeyLeague> <http://dbpedia.org/ontology/Name>),1
DisjointClasses(<http://dbpedia.org/ontology/InlineHockeyLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Venue> <http://dbpedia.org/ontology/Activity>),0.998857855
DisjointClasses(<http://dbpedia.org/ontology/Engine> <http://dbpedia.org/ontology/MusicalArtist>),1
DisjointClasses(<http://dbpedia.org/ontology/Novel> <http://www.w3.org/2002/07/owl#Thing>),0.259474312
DisjointClasses(<http://dbpedia.org/ontology/Infrastructure> <http://www.w3.org/2002/07/owl#Thing>),0.00071693
DisjointClasses(<http://dbpedia.org/ontology/MilitaryConflict> <http://www.w3.org/2002/07/owl#Thing>),0.405373185
DisjointClasses(<http://dbpedia.org/ontology/Egyptologist> <http://dbpedia.org/ontology/ComedyGroup>),1
DisjointClasses(<http://dbpedia.org/ontology/GolfPlayer> <http://dbpedia.org/ontology/Athlete>),0.094753577
DisjointClasses(<http://dbpedia.org/ontology/TelevisionStation> <http://dbpedia.org/ontology/Agent>),0.469785575
DisjointClasses(<http://dbpedia.org/ontology/Caterer> <http://dbpedia.org/ontology/Company>),1
DisjointClasses(<http://dbpedia.org/ontology/Camera> <http://dbpedia.org/ontology/MixedMartialArtsLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/RaceHorse> <http://dbpedia.org/ontology/MouseGene>),1
DisjointClasses(<http://dbpedia.org/ontology/Band> <http://dbpedia.org/ontology/RoadTunnel>),1
DisjointClasses(<http://dbpedia.org/ontology/MilitaryVehicle> <http://dbpedia.org/ontology/ComicsCharacter>),1
DisjointClasses(<http://dbpedia.org/ontology/SportFacility> <http://dbpedia.org/ontology/Place>),0
DisjointClasses(<http://dbpedia.org/ontology/SoftballLeague> <http://dbpedia.org/ontology/Medicine>),1
DisjointClasses(<http://dbpedia.org/ontology/SportsLeague> <http://dbpedia.org/ontology/Organisation>),0.107234241
DisjointClasses(<http://dbpedia.org/ontology/Cricketer> <http://dbpedia.org/ontology/Agent>),0.017911728
DisjointClasses(<http://dbpedia.org/ontology/Article> <http://www.w3.org/2002/07/owl#Thing>),0.446378236
DisjointClasses(<http://dbpedia.org/ontology/Single> <http://dbpedia.org/ontology/Cheese>),1
DisjointClasses(<http://dbpedia.org/ontology/SubMunicipality> <http://dbpedia.org/ontology/Place>),0.216580311
DisjointClasses(<http://dbpedia.org/ontology/RecordLabel> <http://dbpedia.org/ontology/Organisation>),0.102000684
DisjointClasses(<http://dbpedia.org/ontology/Weapon> <http://dbpedia.org/ontology/InlineHockeyLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/BaseballTeam> <http://dbpedia.org/ontology/BusCompany>),1
DisjointClasses(<http://dbpedia.org/ontology/Producer> <http://dbpedia.org/ontology/Church>),1
DisjointClasses(<http://dbpedia.org/ontology/PeriodicalLiterature> <http://dbpedia.org/ontology/HollywoodCartoon>),1
DisjointClasses(<http://dbpedia.org/ontology/Noble> <http://dbpedia.org/ontology/SpeedSkater>),1
DisjointClasses(<http://dbpedia.org/ontology/ChemicalSubstance> <http://dbpedia.org/ontology/ReligiousBuilding>),1
DisjointClasses(<http://dbpedia.org/ontology/Software> <http://dbpedia.org/ontology/Comic>),1
DisjointClasses(<http://dbpedia.org/ontology/Song> <http://dbpedia.org/ontology/TelevisionSeason>),1
DisjointClasses(<http://dbpedia.org/ontology/Parliament> <http://dbpedia.org/ontology/Community>),0.993710692
DisjointClasses(<http://dbpedia.org/ontology/Image> <http://dbpedia.org/ontology/Book>),0.999987698
DisjointClasses(<http://dbpedia.org/ontology/Singer> <http://dbpedia.org/ontology/ProgrammingLanguage>),1
DisjointClasses(<http://dbpedia.org/ontology/Library> <http://dbpedia.org/ontology/Place>),0.524349286
DisjointClasses(<http://dbpedia.org/ontology/Shrine> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.861007463
DisjointClasses(<http://dbpedia.org/ontology/HorseTrainer> <http://www.w3.org/2002/07/owl#Thing>),0.071917808
DisjointClasses(<http://dbpedia.org/ontology/BusCompany> <http://dbpedia.org/ontology/ClericalAdministrativeRegion>),1
DisjointClasses(<http://dbpedia.org/ontology/Valley> <http://dbpedia.org/ontology/Place>),0.676377953
DisjointClasses(<http://dbpedia.org/ontology/LaunchPad> <http://dbpedia.org/ontology/HistoricPlace>),1
DisjointClasses(<http://dbpedia.org/ontology/MusicGenre> <http://dbpedia.org/ontology/Disease>),0.999093929
DisjointClasses(<http://dbpedia.org/ontology/SpeedwayRider> <http://dbpedia.org/ontology/AutomobileEngine>),1
DisjointClasses(<http://dbpedia.org/ontology/Architect> <http://dbpedia.org/ontology/Marriage>),1
DisjointClasses(<http://dbpedia.org/ontology/Genre> <http://dbpedia.org/ontology/BritishRoyalty>),1
DisjointClasses(<http://dbpedia.org/ontology/Restaurant> <http://dbpedia.org/ontology/Game>),0.999397469
DisjointClasses(<http://dbpedia.org/ontology/ChessPlayer> <http://www.w3.org/2002/07/owl#Thing>),0.013888889
DisjointClasses(<http://dbpedia.org/ontology/HockeyTeam> <http://www.w3.org/2002/07/owl#Thing>),0.524517558
DisjointClasses(<http://dbpedia.org/ontology/Vodka> <http://dbpedia.org/ontology/Beverage>),0.271966527
DisjointClasses(<http://dbpedia.org/ontology/Genre> <http://dbpedia.org/ontology/TopicalConcept>),0.135891518
DisjointClasses(<http://dbpedia.org/ontology/WaterRide> <http://dbpedia.org/ontology/Humorist>),1
DisjointClasses(<http://dbpedia.org/ontology/UnitOfWork> <http://dbpedia.org/ontology/Senator>),1
DisjointClasses(<http://dbpedia.org/ontology/MilitaryConflict> <http://dbpedia.org/ontology/SocietalEvent>),0.497424107
DisjointClasses(<http://dbpedia.org/ontology/RugbyLeague> <http://dbpedia.org/ontology/Statistic>),1
DisjointClasses(<http://dbpedia.org/ontology/Animal> <http://www.w3.org/2002/07/owl#Thing>),0.002115774
DisjointClasses(<http://dbpedia.org/ontology/RaceHorse> <http://dbpedia.org/ontology/Animal>),0.155232155
DisjointClasses(<http://dbpedia.org/ontology/Capital> <http://dbpedia.org/ontology/Place>),0.458085452
DisjointClasses(<http://dbpedia.org/ontology/PoloLeague> <http://dbpedia.org/ontology/Organisation>),0
DisjointClasses(<http://dbpedia.org/ontology/Cricketer> <http://dbpedia.org/ontology/MilitaryVehicle>),1
DisjointClasses(<http://dbpedia.org/ontology/Painter> <http://dbpedia.org/ontology/Person>),0.151133648
DisjointClasses(<http://dbpedia.org/ontology/Sales> <http://www.w3.org/2002/07/owl#Thing>),0.002150827
DisjointClasses(<http://dbpedia.org/ontology/Producer> <http://dbpedia.org/ontology/Archeologist>),1
DisjointClasses(<http://dbpedia.org/ontology/Planet> <http://dbpedia.org/ontology/Prison>),1
DisjointClasses(<http://dbpedia.org/ontology/Monarch> <http://dbpedia.org/ontology/Senator>),1
DisjointClasses(<http://dbpedia.org/ontology/ProgrammingLanguage> <http://dbpedia.org/ontology/Crustacean>),1
DisjointClasses(<http://dbpedia.org/ontology/Crustacean> <http://dbpedia.org/ontology/Hotel>),1
DisjointClasses(<http://dbpedia.org/ontology/Animal> <http://dbpedia.org/ontology/SocietalEvent>),1
DisjointClasses(<http://dbpedia.org/ontology/Race> <http://dbpedia.org/ontology/TelevisionHost>),1
DisjointClasses(<http://dbpedia.org/ontology/Software> <http://dbpedia.org/ontology/Film>),0.998317777
DisjointClasses(<http://dbpedia.org/ontology/ClubMoss> <http://dbpedia.org/ontology/Mountain>),1
DisjointClasses(<http://dbpedia.org/ontology/RecordLabel> <http://www.w3.org/2002/07/owl#Thing>),0.096699726
DisjointClasses(<http://dbpedia.org/ontology/Ambassador> <http://dbpedia.org/ontology/GridironFootballPlayer>),0.999772339
DisjointClasses(<http://dbpedia.org/ontology/Comedian> <http://www.w3.org/2002/07/owl#Thing>),0.043754175
DisjointClasses(<http://dbpedia.org/ontology/Attack> <http://www.w3.org/2002/07/owl#Thing>),0.718574109
DisjointClasses(<http://dbpedia.org/ontology/RugbyClub> <http://dbpedia.org/ontology/Synagogue>),1
DisjointClasses(<http://dbpedia.org/ontology/Pope> <http://dbpedia.org/ontology/WorldHeritageSite>),1
DisjointClasses(<http://dbpedia.org/ontology/Non-ProfitOrganisation> <http://dbpedia.org/ontology/Agent>),0.376010782
DisjointClasses(<http://dbpedia.org/ontology/HandballLeague> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Single> <http://dbpedia.org/ontology/RouteOfTransportation>),0.999962141
DisjointClasses(<http://dbpedia.org/ontology/VolleyballLeague> <http://dbpedia.org/ontology/LaunchPad>),1
DisjointClasses(<http://dbpedia.org/ontology/Brewery> <http://dbpedia.org/ontology/Company>),0.155006859
DisjointClasses(<http://dbpedia.org/ontology/CricketTeam> <http://dbpedia.org/ontology/Organisation>),0.510360706
DisjointClasses(<http://dbpedia.org/ontology/AmateurBoxer> <http://dbpedia.org/ontology/Agent>),0
DisjointClasses(<http://dbpedia.org/ontology/Poet> <http://dbpedia.org/ontology/Writer>),0.274854275
DisjointClasses(<http://dbpedia.org/ontology/MilitaryStructure> <http://dbpedia.org/ontology/Type>),0.999298738
DisjointClasses(<http://dbpedia.org/ontology/Linguist> <http://dbpedia.org/ontology/Agent>),0.152165999
DisjointClasses(<http://dbpedia.org/ontology/Enzyme> <http://dbpedia.org/ontology/Tunnel>),1
DisjointClasses(<http://dbpedia.org/ontology/Sound> <http://dbpedia.org/ontology/Article>),0.974080772
DisjointClasses(<http://dbpedia.org/ontology/TennisTournament> <http://dbpedia.org/ontology/Event>),0
DisjointClasses(<http://dbpedia.org/ontology/Jockey> <http://dbpedia.org/ontology/Agent>),0.163249211
DisjointClasses(<http://dbpedia.org/ontology/Play> <http://dbpedia.org/ontology/TelevisionSeason>),1
DisjointClasses(<http://dbpedia.org/ontology/Amphibian> <http://dbpedia.org/ontology/Cricketer>),1
DisjointClasses(<http://dbpedia.org/ontology/Automobile> <http://www.w3.org/2002/07/owl#Thing>),0.301064931
DisjointClasses(<http://dbpedia.org/ontology/MouseGene> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/FormulaOneTeam> <http://dbpedia.org/ontology/RoadTunnel>),1
DisjointClasses(<http://dbpedia.org/ontology/MythologicalFigure> <http://dbpedia.org/ontology/Automobile>),1
DisjointClasses(<http://dbpedia.org/ontology/CelestialBody> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/Race> <http://dbpedia.org/ontology/Parish>),0.999842743
DisjointClasses(<http://dbpedia.org/ontology/Skater> <http://dbpedia.org/ontology/Capital>),1
DisjointClasses(<http://dbpedia.org/ontology/Fashion> <http://www.w3.org/2002/07/owl#Thing>),0.616517286
DisjointClasses(<http://dbpedia.org/ontology/ChessPlayer> <http://dbpedia.org/ontology/Agent>),0.013888889
DisjointClasses(<http://dbpedia.org/ontology/Department> <http://dbpedia.org/ontology/AdministrativeRegion>),0.995416079
DisjointClasses(<http://dbpedia.org/ontology/RouteOfTransportation> <http://dbpedia.org/ontology/Infrastructure>),0.037480124
DisjointClasses(<http://dbpedia.org/ontology/ClassicalMusicArtist> <http://dbpedia.org/ontology/Artist>),0.037142857
DisjointClasses(<http://dbpedia.org/ontology/Conifer> <http://dbpedia.org/ontology/TelevisionEpisode>),1
DisjointClasses(<http://dbpedia.org/ontology/Canoeist> <http://dbpedia.org/ontology/Statistic>),1
DisjointClasses(<http://dbpedia.org/ontology/Mountain> <http://www.w3.org/2002/07/owl#Thing>),0.250782858
DisjointClasses(<http://dbpedia.org/ontology/Territory> <http://dbpedia.org/ontology/RugbyPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/Crater> <http://dbpedia.org/ontology/Venue>),1
DisjointClasses(<http://dbpedia.org/ontology/Synagogue> <http://dbpedia.org/ontology/Building>),0.622302158
DisjointClasses(<http://dbpedia.org/ontology/SubMunicipality> <http://dbpedia.org/ontology/Region>),0.92746114
DisjointClasses(<http://dbpedia.org/ontology/Jockey> <http://dbpedia.org/ontology/Tower>),1
DisjointClasses(<http://dbpedia.org/ontology/Painter> <http://dbpedia.org/ontology/Agent>),0.151017078
DisjointClasses(<http://dbpedia.org/ontology/AutomobileEngine> <http://dbpedia.org/ontology/Instrumentalist>),1
DisjointClasses(<http://dbpedia.org/ontology/Satellite> <http://dbpedia.org/ontology/BasketballLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Altitude> <http://dbpedia.org/ontology/Species>),1
DisjointClasses(<http://dbpedia.org/ontology/Farmer> <http://dbpedia.org/ontology/Agent>),0.160171103
DisjointClasses(<http://dbpedia.org/ontology/Baronet> <http://dbpedia.org/ontology/District>),0.998461801
DisjointClasses(<http://dbpedia.org/ontology/FilmFestival> <http://dbpedia.org/ontology/MusicFestival>),1
DisjointClasses(<http://dbpedia.org/ontology/Sculpture> <http://dbpedia.org/ontology/Pyramid>),1
DisjointClasses(<http://dbpedia.org/ontology/RacingDriver> <http://dbpedia.org/ontology/Agent>),0.001241311
DisjointClasses(<http://dbpedia.org/ontology/BasketballTeam> <http://dbpedia.org/ontology/RecordLabel>),1
DisjointClasses(<http://dbpedia.org/ontology/Skyscraper> <http://www.w3.org/2002/07/owl#Thing>),0.145318352
DisjointClasses(<http://dbpedia.org/ontology/Single> <http://dbpedia.org/ontology/Database>),1
DisjointClasses(<http://dbpedia.org/ontology/Insect> <http://www.w3.org/2002/07/owl#Thing>),0.002213599
DisjointClasses(<http://dbpedia.org/ontology/SkiArea> <http://dbpedia.org/ontology/Place>),0.101265823
DisjointClasses(<http://dbpedia.org/ontology/Model> <http://dbpedia.org/ontology/Person>),0.42712831
DisjointClasses(<http://dbpedia.org/ontology/FictionalCharacter> <http://www.w3.org/2002/07/owl#Thing>),0.153673883
DisjointClasses(<http://dbpedia.org/ontology/Psychologist> <http://dbpedia.org/ontology/ClubMoss>),1
DisjointClasses(<http://dbpedia.org/ontology/TopicalConcept> <http://www.w3.org/2002/07/owl#Thing>),0.000577034
DisjointClasses(<http://dbpedia.org/ontology/TelevisionEpisode> <http://dbpedia.org/ontology/Comic>),0.999844455
DisjointClasses(<http://dbpedia.org/ontology/PublicTransitSystem> <http://dbpedia.org/ontology/Agent>),0.323170732
DisjointClasses(<http://dbpedia.org/ontology/Photographer> <http://dbpedia.org/ontology/Cleric>),0.999856569
DisjointClasses(<http://dbpedia.org/ontology/GridironFootballPlayer> <http://dbpedia.org/ontology/Entomologist>),1
DisjointClasses(<http://dbpedia.org/ontology/School> <http://dbpedia.org/ontology/FormulaOneTeam>),1
DisjointClasses(<http://dbpedia.org/ontology/HorseRider> <http://dbpedia.org/ontology/Agent>),0.078397213
DisjointClasses(<http://dbpedia.org/ontology/Gnetophytes> <http://dbpedia.org/ontology/Eukaryote>),0
DisjointClasses(<http://dbpedia.org/ontology/Galaxy> <http://dbpedia.org/ontology/CelestialBody>),0.673976608
DisjointClasses(<http://dbpedia.org/ontology/Parish> <http://www.w3.org/2002/07/owl#Thing>),0.500366193
DisjointClasses(<http://dbpedia.org/ontology/Skyscraper> <http://dbpedia.org/ontology/Place>),0.146067416
DisjointClasses(<http://dbpedia.org/ontology/SoccerPlayer> <http://dbpedia.org/ontology/Agent>),0.121487638
DisjointClasses(<http://dbpedia.org/ontology/SpeedSkater> <http://dbpedia.org/ontology/Temple>),1
DisjointClasses(<http://dbpedia.org/ontology/MythologicalFigure> <http://dbpedia.org/ontology/TelevisionSeason>),1
DisjointClasses(<http://dbpedia.org/ontology/Cartoon> <http://dbpedia.org/ontology/IceHockeyLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/President> <http://dbpedia.org/ontology/Person>),0.24112
DisjointClasses(<http://dbpedia.org/ontology/CanadianFootballTeam> <http://dbpedia.org/ontology/HandballLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Engineer> <http://dbpedia.org/ontology/Person>),0.108124165
DisjointClasses(<http://dbpedia.org/ontology/AmusementParkAttraction> <http://dbpedia.org/ontology/ArchitecturalStructure>),0
DisjointClasses(<http://dbpedia.org/ontology/MemberOfParliament> <http://dbpedia.org/ontology/Governor>),1
DisjointClasses(<http://dbpedia.org/ontology/Biomolecule> <http://www.w3.org/2002/07/owl#Thing>),0.063529412
DisjointClasses(<http://dbpedia.org/ontology/Bodybuilder> <http://dbpedia.org/ontology/Athlete>),0.36
DisjointClasses(<http://dbpedia.org/ontology/SportsTeamMember> <http://dbpedia.org/ontology/AustralianRulesFootballPlayer>),1
DisjointClasses(<http://dbpedia.org/ontology/TelevisionHost> <http://www.w3.org/2002/07/owl#Thing>),0
DisjointClasses(<http://dbpedia.org/ontology/Tournament> <http://dbpedia.org/ontology/Atoll>),1
DisjointClasses(<http://dbpedia.org/ontology/Fungus> <http://dbpedia.org/ontology/Eukaryote>),0.024279061
DisjointClasses(<http://dbpedia.org/ontology/Cartoon> <http://dbpedia.org/ontology/Database>),1
DisjointClasses(<http://dbpedia.org/ontology/HorseTrainer> <http://dbpedia.org/ontology/OlympicResult>),1
DisjointClasses(<http://dbpedia.org/ontology/SportsTeamMember> <http://dbpedia.org/ontology/Lawyer>),1
DisjointClasses(<http://dbpedia.org/ontology/MythologicalFigure> <http://dbpedia.org/ontology/Agent>),0.267345051
DisjointClasses(<http://dbpedia.org/ontology/Play> <http://dbpedia.org/ontology/VideoGame>),1
DisjointClasses(<http://dbpedia.org/ontology/SportsTeam> <http://dbpedia.org/ontology/Agent>),0.084364283
DisjointClasses(<http://dbpedia.org/ontology/SportCompetitionResult> <http://dbpedia.org/ontology/Image>),1
DisjointClasses(<http://dbpedia.org/ontology/Mollusca> <http://dbpedia.org/ontology/Galaxy>),1
DisjointClasses(<http://dbpedia.org/ontology/Archive> <http://dbpedia.org/ontology/Marriage>),1
DisjointClasses(<http://dbpedia.org/ontology/Boxer> <http://dbpedia.org/ontology/Person>),0.119358572
DisjointClasses(<http://dbpedia.org/ontology/PoloLeague> <http://dbpedia.org/ontology/Watermill>),1
DisjointClasses(<http://dbpedia.org/ontology/FieldHockeyLeague> <http://dbpedia.org/ontology/CultivatedVariety>),1
DisjointClasses(<http://dbpedia.org/ontology/Flag> <http://dbpedia.org/ontology/Actor>),1
DisjointClasses(<http://dbpedia.org/ontology/BoardGame> <http://dbpedia.org/ontology/Device>),1
DisjointClasses(<http://dbpedia.org/ontology/SoccerPlayer> <http://www.w3.org/2002/07/owl#Thing>),0.121446153
DisjointClasses(<http://dbpedia.org/ontology/FormulaOneTeam> <http://dbpedia.org/ontology/TelevisionSeason>),1
DisjointClasses(<http://dbpedia.org/ontology/WrittenWork> <http://dbpedia.org/ontology/Website>),0.989489489
DisjointClasses(<http://dbpedia.org/ontology/LegalCase> <http://dbpedia.org/ontology/FashionDesigner>),1
DisjointClasses(<http://dbpedia.org/ontology/Song> <http://dbpedia.org/ontology/Manhwa>),1
DisjointClasses(<http://dbpedia.org/ontology/GaelicGamesPlayer> <http://dbpedia.org/ontology/Person>),0.042205965
DisjointClasses(<http://dbpedia.org/ontology/Hospital> <http://dbpedia.org/ontology/InlineHockeyLeague>),1
DisjointClasses(<http://dbpedia.org/ontology/Senator> <http://dbpedia.org/ontology/Lymph>),1
DisjointClasses(<http://dbpedia.org/ontology/MountainRange> <http://dbpedia.org/ontology/Factory>),1
DisjointClasses(<http://dbpedia.org/ontology/Restaurant> <http://dbpedia.org/ontology/Building>),0.805985138
DisjointClasses(<http://dbpedia.org/ontology/RugbyPlayer> <http://dbpedia.org/ontology/Agent>),0.002584962
DisjointClasses(<http://dbpedia.org/ontology/CareerStation> <http://dbpedia.org/ontology/TimePeriod>),1
DisjointClasses(<http://dbpedia.org/ontology/Cemetery> <http://dbpedia.org/ontology/SoccerManager>),1
DisjointClasses(<http://dbpedia.org/ontology/Engine> <http://dbpedia.org/ontology/Device>),0.061462266
DisjointClasses(<http://dbpedia.org/ontology/Hotel> <http://dbpedia.org/ontology/ArchitecturalStructure>),0.398613518
DisjointClasses(<http://dbpedia.org/ontology/WrittenWork> <http://dbpedia.org/ontology/Song>),0.999662132
DisjointClasses(<http://dbpedia.org/ontology/RailwayStation> <http://dbpedia.org/ontology/Quote>),1
DisjointClasses(<http://dbpedia.org/ontology/NaturalEvent> <http://dbpedia.org/ontology/Lipid>),1