swls-core 0.1.2

Core LSP infrastructure for the Semantic Web Language Server
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
madsrdf,"http://www.loc.gov/mads/rdf/v1#"
bflc,"http://id.loc.gov/ontologies/bflc/"
foaf,"http://xmlns.com/foaf/0.1/"
rdf,"http://www.w3.org/1999/02/22-rdf-syntax-ns#"
dbo,"http://dbpedia.org/ontology/"
rdfs,"http://www.w3.org/2000/01/rdf-schema#"
yago,"http://yago-knowledge.org/resource/"
dc,"http://purl.org/dc/elements/1.1/"
dbp,"http://dbpedia.org/property/"
owl,"http://www.w3.org/2002/07/owl#"
gr,"http://purl.org/goodrelations/v1#"
ex,"http://example.org/"
skos,"http://www.w3.org/2004/02/skos/core#"
geo,"http://www.opengis.net/ont/geosparql#"
spacerel,"http://data.ordnancesurvey.co.uk/ontology/spatialrelations/"
xsd,"http://www.w3.org/2001/XMLSchema#"
dcat,"http://www.w3.org/ns/dcat#"
org,"http://www.w3.org/ns/org#"
dct,"http://purl.org/dc/terms/"
dcterms,"http://purl.org/dc/terms/"
qb,"http://purl.org/linked-data/cube#"
prov,"http://www.w3.org/ns/prov#"
sioc,"http://rdfs.org/sioc/ns#"
xtypes,"http://purl.org/xtypes/"
dbpedia,"http://dbpedia.org/resource/"
void,"http://rdfs.org/ns/void#"
ont,"http://purl.org/net/ns/ontology-annot#"
onto,"http://www.ontotext.com/"
sio,"http://semanticscience.org/resource/"
schema,"http://schema.org/"
obo,"http://purl.obolibrary.org/obo/"
dcterm,"http://purl.org/dc/terms/"
bf,"http://id.loc.gov/ontologies/bibframe/"
search,"http://sindice.com/vocab/search#"
sd,"http://www.w3.org/ns/sparql-service-description#"
frbr,"http://purl.org/vocab/frbr/core#"
stat,"http://www.w3.org/ns/posix/stat#"
vcard,"http://www.w3.org/2006/vcard/ns#"
commerce,"http://search.yahoo.com/searchmonkey/commerce/"
bibo,"http://purl.org/ontology/bibo/"
dbr,"http://dbpedia.org/resource/"
rss,"http://purl.org/rss/1.0/"
pto,"http://www.productontology.org/id/"
gldp,"http://www.w3.org/ns/people#"
geonames,"http://www.geonames.org/ontology#"
oo,"http://purl.org/openorg/"
fb,"http://rdf.freebase.com/ns/"
event,"http://purl.org/NET/c4dm/event.owl#"
content,"http://purl.org/rss/1.0/modules/content/"
wd,"http://www.wikidata.org/entity/"
dcmit,"http://purl.org/dc/dcmitype/"
vann,"http://purl.org/vocab/vann/"
gen,"http://purl.org/gen/0.1#"
cc,"http://creativecommons.org/ns#"
http,"http://www.w3.org/2011/http#"
doap,"http://usefulinc.com/ns/doap#"
dbpprop,"http://dbpedia.org/property/"
rr,"http://www.w3.org/ns/r2rml#"
swrc,"http://swrc.ontoware.org/ontology#"
drugbank,"http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugbank/"
md,"http://www.w3.org/ns/md#"
nie,"http://www.semanticdesktop.org/ontologies/2007/01/19/nie#"
sc,"https://schema.org/"
prog,"http://purl.org/prog/"
wot,"http://xmlns.com/wot/0.1/"
cv,"http://rdfs.org/resume-rdf/"
fn,"http://www.w3.org/2005/xpath-functions#"
ma,"http://www.w3.org/ns/ma-ont#"
akt,"http://www.aktors.org/ontology/portal#"
aiiso,"http://purl.org/vocab/aiiso/schema#"
as,"https://www.w3.org/ns/activitystreams#"
tl,"http://purl.org/NET/c4dm/timeline.owl#"
swc,"http://data.semanticweb.org/ns/swc/ontology#"
leaks,"https://cuzin.com/"
daia,"http://purl.org/ontology/daia/"
crm,"http://www.cidoc-crm.org/cidoc-crm/"
ical,"http://www.w3.org/2002/12/cal/ical#"
ov,"http://open.vocab.org/terms/"
rel,"http://purl.org/vocab/relationship/"
xhtml,"http://www.w3.org/1999/xhtml#"
bio,"http://purl.org/vocab/bio/0.1/"
earl,"http://www.w3.org/ns/earl#"
vs,"http://www.w3.org/2003/06/sw-vocab-status/ns#"
mo,"http://purl.org/ontology/mo/"
rdfg,"http://www.w3.org/2004/03/trix/rdfg-1/"
dv,"http://rdf.data-vocabulary.org/#"
marcrel,"http://id.loc.gov/vocabulary/relators/"
co,"http://purl.org/ontology/co/core#"
xhv,"http://www.w3.org/1999/xhtml/vocab#"
cs,"http://purl.org/vocab/changeset/schema#"
ad,"http://schemas.talis.com/2005/address/schema#"
afn,"http://jena.apache.org/ARQ/function#"
dc11,"http://purl.org/dc/elements/1.1/"
og,"http://opengraphprotocol.org/schema/"
unit,"http://qudt.org/vocab/unit/"
bill,"http://www.rdfabout.com/rdf/schema/usbill/"
musim,"http://purl.org/ontology/similarity/"
prop,"http://dbpedia.org/property/"
test2,"http://this.invalid/test2#"
air,"http://dig.csail.mit.edu/TAMI/2007/amord/air#"
factbook,"http://wifo5-04.informatik.uni-mannheim.de/factbook/ns#"
xs,"http://www.w3.org/2001/XMLSchema#"
mu,"http://mu.semte.ch/vocabularies/core/"
log,"http://www.w3.org/2000/10/swap/log#"
book,"http://purl.org/NET/book/vocab#"
dcq,"http://purl.org/dc/qualifiers/1.0/"
xfn,"http://gmpg.org/xfn/11#"
d2rq,"http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#"
media,"http://search.yahoo.com/searchmonkey/media/"
dbowl,"http://ontology.cybershare.utep.edu/dbowl/relational-to-ontology-mapping-primitive.owl#"
ir,"http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#"
cal,"http://www.w3.org/2002/12/cal/ical#"
xf,"http://www.w3.org/2002/xforms/"
reco,"http://purl.org/reco#"
cld,"http://purl.org/cld/terms/"
biblio,"http://purl.org/net/biblio#"
botany,"http://purl.org/NET/biol/botany#"
ome,"http://purl.org/ontomedia/core/expression#"
rev,"http://purl.org/stuff/rev#"
tag,"http://www.holygoat.co.uk/owl/redwood/0.1/tags/"
sism,"http://purl.oclc.org/NET/sism/0.1/"
ctag,"http://commontag.org/ns#"
dir,"http://schemas.talis.com/2005/dir/schema#"
days,"http://ontologi.es/days#"
af,"http://purl.org/ontology/af/"
rif,"http://www.w3.org/2007/rif#"
qudt,"http://qudt.org/schema/qudt/"
osag,"http://www.ordnancesurvey.co.uk/ontology/AdministrativeGeography/v2.0/AdministrativeGeography.rdf#"
admin,"http://webns.net/mvcb/"
tzont,"http://www.w3.org/2006/timezone#"
sr,"http://www.openrdf.org/config/repository/sail#"
xmp,"http://ns.adobe.com/xap/1.0/"
cmp,"http://www.ontologydesignpatterns.org/cp/owl/componency.owl#"
math,"http://www.w3.org/2000/10/swap/math#"
ok,"http://okkam.org/terms#"
pc,"http://purl.org/procurement/public-contracts#"
dcn,"http://www.w3.org/2007/uwa/context/deliverycontext.owl#"
myspace,"http://purl.org/ontology/myspace#"
memo,"http://ontologies.smile.deri.ie/2009/02/27/memo#"
dcam,"http://purl.org/dc/dcam/"
lomvoc,"http://ltsc.ieee.org/rdf/lomv1p0/vocabulary#"
jdbc,"http://d2rq.org/terms/jdbc/"
time,"http://www.w3.org/2006/time#"
giving,"http://ontologi.es/giving#"
cfp,"http://sw.deri.org/2005/08/conf/cfp.owl#"
swanq,"http://purl.org/swan/1.2/qualifiers/"
sdmx,"http://purl.org/linked-data/sdmx#"
omn,"http://open-multinet.info/ontology/omn#"
swande,"http://purl.org/swan/1.2/discourse-elements/"
owlim,"http://www.ontotext.com/trree/owlim#"
lyou,"http://purl.org/linkingyou/"
gn,"http://www.geonames.org/ontology#"
con,"http://www.w3.org/2000/10/swap/pim/contact#"
cyc,"http://sw.opencyc.org/concept/"
skosxl,"http://www.w3.org/2008/05/skos-xl#"
oa,"http://www.w3.org/ns/oa#"
adms,"http://www.w3.org/ns/adms#"
nif,"http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#"
cdm,"http://publications.europa.eu/ontology/cdm#"
openlinks,"http://www.openlinksw.com/schemas/virtrdf#"
sdmxdim,"http://purl.org/linked-data/sdmx/2009/dimension#"
ontology,"http://dbpedia.org/ontology/"
db,"http://dbpedia.org/"
type,"https://webiomed.ai/blog/obzor-rossiiskikh-sistem-podderzhki-priniatiia-vrachebnykh-reshenii/"
om,"http://opendata.caceres.es/def/ontomunicipio#"
lemon,"http://lemon-model.net/lemon#"
photoshop,"http://ns.adobe.com/photoshop/1.0/"
gvp,"http://vocab.getty.edu/ontology#"
wfs,"http://schemas.opengis.net/wfs/"
sh,"http://www.w3.org/ns/shacl#"
exif,"http://www.w3.org/2003/12/exif/ns#"
isbd,"http://iflastandards.info/ns/isbd/elements/"
aat,"http://vocab.getty.edu/aat/"
ac,"http://umbel.org/umbel/ac/"
wdt,"http://www.wikidata.org/prop/direct/"
fabio,"http://purl.org/spar/fabio/"
sdmxa,"http://purl.org/linked-data/sdmx/2009/attribute#"
cert,"http://www.w3.org/ns/auth/cert#"
xsi,"http://www.w3.org/2001/XMLSchema-instance#"
test,"https://test4.example.com/"
prism,"http://prismstandard.org/namespaces/basic/2.0/"
tgn,"http://vocab.getty.edu/tgn/"
cnt,"http://www.w3.org/2011/content#"
dul,"http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#"
ulan,"http://vocab.getty.edu/ulan/"
eat,"http://www.eat.rl.ac.uk/#"
swrl,"http://www.w3.org/2003/11/swrl#"
sf,"http://www.opengis.net/ont/sf#"
edm,"http://www.europeana.eu/schemas/edm/"
gtfs,"http://vocab.gtfs.org/terms#"
eg,"http://www.example.org/"
room,"http://vocab.deri.ie/rooms#"
voaf,"http://purl.org/vocommons/voaf#"
nsogi,"http://prefix.cc/nsogi:"
ore,"http://www.openarchives.org/ore/terms/"
uniprot,"http://purl.uniprot.org/uniprot/"
swrcfe,"http://www.morelab.deusto.es/ontologies/swrcfe#"
core,"http://vivoweb.org/ontology/core#"
swrlb,"http://www.w3.org/2003/11/swrlb#"
nfo,"http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#"
fise,"http://fise.iks-project.eu/ontology/"
dbc,"http://dbpedia.org/resource/Category:"
ssn,"http://www.w3.org/ns/ssn/"
itsrdf,"http://www.w3.org/2005/11/its/rdf#"
lv,"http://purl.org/lobid/lv#"
ro,"http://purl.org/wf4ever/ro#"
bif,"http://www.openlinksw.com/schemas/bif#"
ceo,"https://linkeddata.cultureelerfgoed.nl/def/ceo#"
go,"http://purl.obolibrary.org/obo/GO_"
xml,"http://www.w3.org/XML/1998/namespace/"
dbprop,"http://dbpedia.org/property/"
music,"http://musicontology.com/"
wikidata,"http://www.wikidata.org/entity/"
movie,"http://data.linkedmdb.org/resource/movie/"
ldp,"http://www.w3.org/ns/ldp#"
gndo,"http://d-nb.info/standards/elementset/gnd#"
scovo,"http://purl.org/NET/scovo#"
ping,"https://namso-gen.com/"
cco,"http://www.ontologyrepository.com/CommonCoreOntologies/"
loc,"http://purl.org/ontomedia/core/space#"
nmo,"http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#"
lexinfo,"http://www.lexinfo.net/ontology/3.0/lexinfo#"
am,"http://vocab.deri.ie/am#"
pat,"http://purl.org/hpi/patchr#"
geoes,"http://geo.linkeddata.es/ontology/"
sioct,"http://rdfs.org/sioc/types#"
wp,"http://vocabularies.wikipathways.org/"
mods,"http://www.loc.gov/mods/v3#"
siocserv,"http://rdfs.org/sioc/services#"
leak,"http://maco.com/"
gnd,"http://d-nb.info/gnd/"
dce,"http://purl.org/dc/elements/1.1/"
dblp,"http://dblp.uni-trier.de/rdf/schema-2015-01-26#"
chebi,"http://purl.obolibrary.org/obo/CHEBI_"
nao,"http://www.semanticdesktop.org/ontologies/2007/08/15/nao#"
ptr,"http://www.w3.org/2009/pointers#"
sdo,"https://schema.org/"
coref,"http://www.rkbexplorer.com/ontologies/coref#"
acc,"http://purl.org/NET/acc#"
sparql,"http://www.w3.org/ns/sparql#"
imm,"http://schemas.microsoft.com/imm/"
bd,"http://www.bigdata.com/rdf#"
rec,"http://purl.org/ontology/rec/core#"
cerif,"http://spi-fm.uca.es/neologism/cerif#"
product,"http://purl.org/commerce/product#"
example,"http://www.example.org/rdf#"
up,"http://purl.uniprot.org/core/"
list,"http://www.w3.org/2000/10/swap/list#"
sec,"https://w3id.org/security#"
gd,"http://rdf.data-vocabulary.org/#"
whois,"http://www.kanzaki.com/ns/whois#"
doc,"http://www.w3.org/2000/10/swap/pim/doc#"
pmlj,"http://inference-web.org/2.0/pml-justification.owl#"
meta,"https://krr.triply.cc/krr/sameas-meta/def/"
gold,"http://purl.org/linguistics/gold/"
java,"http://www.w3.org/2007/uwa/context/java.owl#"
georss,"http://www.georss.org/georss/"
st,"http://ns.inria.fr/sparql-template/"
dbkwik,"http://dbkwik.webdatacommons.org/"
penn,"http://purl.org/olia/penn.owl#"
opm,"https://w3id.org/opm#"
ms,"http://purl.org/obo/owl/MS#"
mf,"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#"
cube,"https://cube.link/"
ti,"http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#"
xlink,"https://es.scribd.com/doc/79794476/05-Ejercicios-Resueltos-Caja-Negra-y-Recapitulacion/"
lgd,"http://linkedgeodata.org/triplify/"
rsa,"http://www.w3.org/ns/auth/rsa#"
space,"http://purl.org/net/schemas/space/"
sirext,"http://t.me/sirextt/247:"
nt,"http://ns.inria.fr/nicetag/2010/09/09/voc#"
bp,"http://www.biopax.org/release/biopax-level3.owl#"
pext,"http://www.ontotext.com/proton/protonext#"
wiki,"http://en.wikipedia.org/wiki/"
geosparql,"http://www.opengis.net/ont/geosparql#"
hg,"http://rdf.histograph.io/"
iot,"http://iotschema.org/"
vivo,"http://vivoweb.org/ontology/core#"
rdfsharp,"https://rdfsharp.codeplex.com/"
nco,"http://www.semanticdesktop.org/ontologies/2007/03/22/nco#"
sim,"http://www.w3id.org/simulation/ontology/"
akts,"http://www.aktors.org/ontology/support#"
acl,"http://www.w3.org/ns/auth/acl#"
cro,"http://rhizomik.net/ontologies/copyrightonto.owl#"
geof,"http://www.opengis.net/def/function/geosparql/"
kb,"http://deductions.sf.net/ontology/knowledge_base.owl#"
api,"http://purl.org/linked-data/api/vocab#"
cito,"http://purl.org/spar/cito/"
sp,"http://spinrdf.org/sp#"
dbnary,"http://kaiko.getalp.org/dbnary#"
pim,"http://www.w3.org/ns/pim/space#"
olia,"http://purl.org/olia/olia.owl#"
httph,"http://www.w3.org/2007/ont/httph#"
po,"http://purl.org/ontology/po/"
xl,"http://langegger.at/xlwrap/vocab#"
video,"http://purl.org/ontology/video#"
urn,"http://fliqz.com/"
exterms,"http://www.example.org/terms/"
wgs,"http://www.w3.org/2003/01/geo/wgs84_pos#"
cidoc,"http://www.cidoc-crm.org/cidoc-crm/"
cgov,"http://reference.data.gov.uk/def/central-government/"
bag,"https://bag2.basisregistraties.overheid.nl/bag/def/"
dbpediaowl,"http://dbpedia.org/owl/"
seas,"https://w3id.org/seas/"
wn,"http://xmlns.com/wordnet/1.6/"
acm,"http://www.rkbexplorer.com/ontologies/acm#"
overheid,"http://standaarden.overheid.nl/owms/"
pav,"http://purl.org/pav/"
postcode,"http://data.ordnancesurvey.co.uk/id/postcodeunit/"
ean,"http://openean.kaufkauf.net/id/"
dco,"http://info.deepcarbon.net/schema#"
ocd,"http://dati.camera.it/ocd/"
resource,"http://dbpedia.org/resource/"
web,"http://www.w3.org/2007/uwa/context/web.owl#"
pgterms,"http://www.gutenberg.org/2009/pgterms/"
role,"https://w3id.org/role/"
dcatapit,"http://dati.gov.it/onto/dcatapit#"
bing,"http://bing.com/schema/media/"
pr,"http://purl.org/ontology/prv/core#"
prv,"http://purl.org/net/provenance/ns#"
formats,"http://www.w3.org/ns/formats/"
sider,"http://www4.wiwiss.fu-berlin.de/sider/resource/sider/"
atom,"http://www.w3.org/2005/Atom/"
lode,"http://linkedevents.org/ontology/"
sosa,"https://www.w3.org/TR/vocab-ssn/"
name,"http://example.org/name#"
ontolex,"http://www.w3.org/ns/lemon/ontolex#"
abc,"http://www.metadata.net/harmony/ABCSchemaV5Commented.rdf#"
gsp,"http://www.opengis.net/ont/geosparql#"
smf,"http://topbraid.org/sparqlmotionfunctions#"
purl,"http://www.purl.org/"
dcm,"http://purl.org/dc/dcmitype/"
eu,"http://eulersharp.sourceforge.net/2003/03swap/log-rules#"
lime,"http://www.w3.org/ns/lemon/lime#"
edam,"http://edamontology.org/"
wdrs,"http://www.w3.org/2007/05/powder-s#"
daml,"http://www.daml.org/2001/03/daml+oil#"
ass,"http://uptheasset.org/ontology#"
greg,"http://kasei.us/about/foaf.xrdf#"
cpa,"http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#"
wikipedia,"https://en.wikipedia.org/wiki/"
service,"http://purl.org/ontology/service#"
euvoc,"http://publications.europa.eu/ontology/euvoc#"
zoology,"http://purl.org/NET/biol/zoology#"
admingeo,"http://data.ordnancesurvey.co.uk/ontology/admingeo/"
gist,"https://ontologies.semanticarts.com/o/gistCore#"
swid,"http://semanticweb.org/id/"
ndl,"http://schemas.ogf.org/nml/2013/05/base#"
iso,"http://purl.org/iso25964/skos-thes#"
ero,"http://purl.obolibrary.org/obo/"
iao,"http://purl.obolibrary.org/obo/IAO_"
irw,"http://www.ontologydesignpatterns.org/ont/web/irw.owl#"
ecs,"http://rdf.ecs.soton.ac.uk/ontology/ecs#"
bmo,"http://collection.britishmuseum.org/id/ontology/"
xkos,"http://rdf-vocabulary.ddialliance.org/xkos#"
wn20schema,"http://www.w3.org/2006/03/wn/wn20/schema/"
rdfdf,"http://www.openlinksw.com/virtrdf-data-formats#"
ya,"http://blogs.yandex.ru/schema/foaf/"
wo,"http://purl.org/ontology/wo/"
lu,"http://www.ontologydesignpatterns.org/ont/framenet/abox/lu/"
hydra,"http://www.w3.org/ns/hydra/core#"
spin,"http://spinrdf.org/spin#"
premis,"http://www.loc.gov/premis/rdf/v3/"
myspo,"http://purl.org/ontology/myspace#"
scot,"http://rdfs.org/scot/ns#"
omt,"http://purl.org/ontomedia/ext/common/trait#"
agg,"http://purl.org/twc/health/vocab/aggregate/"
mm,"http://linkedmultimedia.org/sparql-mm/ns/2.0.0/function#"
saref,"https://saref.etsi.org/core/"
res,"http://dbpedia.org/resource/"
pmt,"http://tipsy.googlecode.com/svn/trunk/vocab/pmt#"
blt,"http://www.bl.uk/schemas/bibliographic/blterms#"
ignf,"http://data.ign.fr/def/ignf#"
site,"http://ns.ontowiki.net/SysOnt/Site/"
won,"https://w3id.org/won/core#"
sdl,"http://purl.org/vocab/riro/sdl#"
ps,"https://w3id.org/payswarm#"
bibframe,"http://id.loc.gov/ontologies/bibframe/"
fed,"http://www.openrdf.org/config/sail/federation#"
inno,"http://purl.org/innovation/ns#"
tmo,"http://www.semanticdesktop.org/ontologies/2008/05/20/tmo#"
umbelrc,"http://umbel.org/umbel/rc/"
ses,"http://lod.taxonconcept.org/ses/"
es,"http://eulersharp.sourceforge.net/2003/03swap/log-rules#"
rov,"http://www.w3.org/ns/regorg#"
so,"http://schema.org/"
oad,"http://lod.xdams.org/reload/oad/"
faldo,"http://biohackathon.org/resource/faldo#"
user,"http://schemas.talis.com/2005/user/schema#"
swp,"http://www.w3.org/2004/03/trix/swp-2/"
prj,"http://purl.org/stuff/project/"
cordis,"http://cordis.europa.eu/projects/"
resist,"http://www.rkbexplorer.com/ontologies/resist#"
audio,"http://purl.org/media/audio#"
label,"http://purl.org/net/vocab/2004/03/label#"
link,"http://www.w3.org/2007/ont/link#"
npg,"http://ns.nature.com/terms/"
omp,"http://purl.org/ontomedia/ext/common/profession#"
organism,"http://eulersharp.sourceforge.net/2003/03swap/organism#"
ub,"http://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl#"
hp,"http://purl.org/voc/hp/"
uco,"http://purl.org/uco/ns#"
sit,"http://www.ontologydesignpatterns.org/cp/owl/situation.owl#"
cpm,"http://catalogus-professorum.org/cpm/2/"
fresnel,"http://www.w3.org/2004/09/fresnel#"
orges,"http://datos.gob.es/def/sector-publico/organizacion#"
acco,"http://purl.org/acco/ns#"
food,"http://purl.org/foodontology#"
biocore,"http://bio2rdf.org/core#"
ref,"http://purl.org/vocab/relationship/"
phil,"http://philosurfical.open.ac.uk/ontology/philosurfical.owl#"
spl,"http://spinrdf.org/spl#"
rnews,"http://iptc.org/std/rNews/2011-10-07#"
bfo,"http://purl.obolibrary.org/obo/"
cheminf,"http://www.semanticweb.org/ontologies/cheminf.owl#"
sml,"https://w3id.org/sml/def#"
efo,"http://www.ebi.ac.uk/efo/"
wv,"http://vocab.org/waiver/terms/"
sesame,"http://www.openrdf.org/schema/sesame#"
taxo,"http://purl.org/rss/1.0/modules/taxonomy/"
omb,"http://purl.org/ontomedia/ext/common/being#"
ludo,"http://ns.inria.fr/ludo/v1#"
opensearch,"http://a9.com/-/spec/opensearch/1.1/"
umbel,"http://umbel.org/umbel#"
dt,"http://w3id.org/dt#"
lx,"http://purl.org/NET/lx#"
rdau,"http://rdaregistry.info/Elements/u/"
taxon,"http://purl.uniprot.org/taxonomy/"
ao,"http://purl.org/ontology/ao/core#"
doac,"http://ramonantonio.net/doac/0.1/#"
airport,"http://www.daml.org/2001/10/html/airport-ont#"
linkedmdb,"http://data.linkedmdb.org/"
bne,"http://datos.bne.es/resource/"
stanford,"http://purl.org/olia/stanford.owl#"
isothes,"http://purl.org/iso25964/skos-thes#"
lom,"http://ltsc.ieee.org/rdf/lomv1p0/lom#"
eco,"http://www.ebusiness-unibw.org/ontologies/eclass/5.1.4/#"
protege,"http://protege.stanford.edu/system#"
wgs84,"http://www.w3.org/2003/01/geo/wgs84_pos#"
awol,"http://bblfish.net/work/atom-owl/2006-06-06/#"
lgdo,"http://linkedgeodata.org/ontology/"
act,"http://www.w3.org/2007/rif-builtin-action#"
oc,"http://opencoinage.org/rdf/"
conv,"http://purl.org/twc/vocab/conversion/"
net,"http://www.w3.org/2007/uwa/context/network.owl#"
mime,"https://www.iana.org/assignments/media-types/"
pbo,"http://purl.org/ontology/pbo/core#"
sport,"http://purl.org/ontology/sport/"
biol,"http://purl.org/NET/biol/ns#"
wordnet,"http://wordnet-rdf.princeton.edu/ontology#"
sco,"http://purl.org/ontology/sco#"
omm,"http://purl.org/ontomedia/core/media#"
meteo,"http://purl.org/ns/meteo#"
asn,"http://purl.org/ASN/schema/core/"
powder,"http://www.w3.org/2007/05/powder#"
dwc,"http://rs.tdwg.org/dwc/terms/"
fec,"http://www.rdfabout.com/rdf/schema/usfec/"
conversion,"http://purl.org/twc/vocab/conversion/"
granatum,"http://chem.deri.ie/granatum/"
code,"http://telegraphis.net/ontology/measurement/code#"
atomix,"http://buzzword.org.uk/rdf/atomix#"
vra,"http://purl.org/vra/"
library,"http://purl.org/library/"
rail,"http://ontologi.es/rail/vocab#"
xhe,"http://buzzword.org.uk/rdf/xhtml-elements#"
bio2rdf,"http://bio2rdf.org/"
lfm,"http://purl.org/ontology/last-fm/"
crypto,"http://www.w3.org/2000/10/swap/crypto#"
ire,"http://www.ontologydesignpatterns.org/cpont/ire.owl#"
obj,"http://www.openrdf.org/rdf/2009/object#"
tdb,"http://jena.hpl.hp.com/2008/tdb#"
rei,"http://www.w3.org/2004/06/rei#"
spc,"http://purl.org/ontomedia/core/space#"
frir,"http://purl.org/twc/ontology/frir.owl#"
fbgeo,"http://rdf.freebase.com/ns/location/geocode/"
disco,"http://rdf-vocabulary.ddialliance.org/discovery#"
gso,"http://www.w3.org/2006/gen/ont#"
rep,"http://www.openrdf.org/config/repository#"
affy,"http://www.affymetrix.com/community/publications/affymetrix/tmsplice#"
coo,"http://purl.org/coo/ns#"
mit,"http://purl.org/ontology/mo/mit#"
pom,"http://maven.apache.org/POM/4.0.0#"
compass,"http://purl.org/net/compass#"
bibtex,"http://purl.org/net/nknouf/ns/bibtex#"
rdrel,"http://rdvocab.info/RDARelationshipsWEMI/"
ngeo,"http://geovocab.org/geometry#"
txn,"http://lod.taxonconcept.org/ontology/txn.owl#"
money,"http://purl.org/net/rdf-money/"
custom,"http://www.openrdf.org/config/sail/custom#"
muto,"http://purl.org/muto/core#"
dctype,"http://purl.org/dc/dcmitype/"
gpt,"http://purl.org/vocab/riro/gpt#"
vocab,"http://rdf.ontology2.com/vocab#"
rs,"http://rightsstatements.org/vocab/"
lang,"http://ontologi.es/lang/core#"
nrl,"http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#"
vsr,"http://purl.org/twc/vocab/vsr#"
os,"http://www.w3.org/2000/10/swap/os#"
ct,"http://data.linkedct.org/resource/linkedct/"
interval,"http://reference.data.gov.uk/def/intervals/"
swh,"http://plugin.org.uk/swh-plugins/"
bbc,"http://www.bbc.co.uk/ontologies/news/"
oauth,"http://demiblog.org/vocab/oauth#"
hard,"http://www.w3.org/2007/uwa/context/hardware.owl#"
doclist,"http://www.junkwork.net/xml/DocumentList#"
politico,"http://www.rdfabout.com/rdf/schema/politico/"
person,"http://www.w3.org/ns/person#"
aos,"http://rdf.muninn-project.org/ontologies/appearances#"
city,"http://datos.localidata.com/def/City#"
prot,"http://www.proteinontology.info/po.owl#"
deo,"http://purl.org/spar/deo/"
bsbm,"http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/"
ui,"http://www.w3.org/ns/ui#"
ic,"http://imi.go.jp/ns/core/rdf#"
soc,"http://purl.org/net/hdlipcores/ontology/soc#"
bsb,"http://opacplus.bsb-muenchen.de/title/"
vso,"http://purl.org/vso/ns#"
ddc,"http://purl.org/NET/decimalised#"
xen,"http://buzzword.org.uk/rdf/xen#"
contact,"http://www.w3.org/2000/10/swap/pim/contact#"
pro,"http://purl.org/hpi/patchr#"
states,"http://www.w3.org/2005/07/aaa#"
game,"http://data.totl.net/game/"
usgov,"http://www.rdfabout.com/rdf/schema/usgovt/"
locn,"http://www.w3.org/ns/locn#"
isq,"http://purl.org/ontology/is/quality/"
arch,"http://purl.org/archival/vocab/arch#"
omc,"http://purl.org/ontomedia/ext/common/bestiary#"
xds,"http://www.w3.org/2001/XMLSchema#"
rdac,"http://rdaregistry.info/Elements/c/"
dailymed,"http://www4.wiwiss.fu-berlin.de/dailymed/resource/dailymed/"
muo,"http://purl.oclc.org/NET/muo/muo#"
mysql,"http://web-semantics.org/ns/mysql/"
cycann,"http://sw.cyc.com/CycAnnotations_v1#"
soft,"http://www.w3.org/2007/uwa/context/software.owl#"
eli,"http://data.europa.eu/eli/ontology#"
string,"http://www.w3.org/2000/10/swap/string#"
aifb,"http://www.aifb.kit.edu/id/"
climb,"http://climb.dataincubator.org/vocabs/climb/"
xro,"http://purl.org/xro/ns#"
apivc,"http://purl.org/linked-data/api/vocab#"
gml,"http://www.opengis.net/ont/gml#"
lfn,"http://www.dotnetrdf.org/leviathan#"
bib,"http://zeitkunst.org/bibtex/0.1/bibtex.owl#"
yoda,"http://purl.org/NET/yoda#"
gob,"http://purl.org/ontology/last-fm/"
zem,"http://s.zemanta.com/ns#"
cdt,"https://w3id.org/cdt/"
pos,"http://www.w3.org/2003/01/geo/wgs84_pos#"
pay,"http://reference.data.gov.uk/def/payment#"
rlog,"http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#"
arg,"http://rdfs.org/sioc/argument#"
is,"http://purl.org/ontology/is/core#"
worldbank,"http://worldbank.270a.info/dataset/"
cmo,"http://purl.org/twc/ontologies/cmo.owl#"
freebase,"http://rdf.freebase.com/ns/"
scv,"http://purl.org/NET/scovo#"
swanco,"http://purl.org/swan/1.2/swan-commons/"
pdo,"http://ontologies.smile.deri.ie/pdo#"
ist,"http://purl.org/ontology/is/types/"
uri,"http://purl.org/NET/uri#"
sede,"http://eventography.org/sede/0.1/"
ttl,"http://www.w3.org/2008/turtle#"
lvont,"http://lexvo.org/ontology#"
ppo,"http://vocab.deri.ie/ppo#"
dso,"http://purl.org/ontology/dso#"
cos,"http://www.inria.fr/acacia/corese#"
sem,"http://semanticweb.cs.vu.nl/2009/11/sem/"
cex,"http://purl.org/weso/ontology/computex#"
sv,"http://schemas.talis.com/2005/service/schema#"
courseware,"http://courseware.rkbexplorer.com/ontologies/courseware#"
isi,"http://purl.org/ontology/is/inst/"
biopax,"http://www.biopax.org/release/biopax-level3.owl#"
nexif,"http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#"
com,"http://purl.org/commerce#"
moat,"http://moat-project.org/ns#"
nuts,"http://dd.eionet.europa.eu/vocabulary/common/nuts/"
tio,"http://purl.org/tio/ns#"
pmlr,"http://inference-web.org/2.0/pml-relation.owl#"
vote,"http://www.rdfabout.com/rdf/schema/vote/"
odrl,"http://www.w3.org/ns/odrl/2/"
cpv,"http://purl.org/weso/cpv/"
psys,"http://proton.semanticweb.org/protonsys#"
resex,"http://resex.rkbexplorer.com/ontologies/resex#"
dnr,"http://www.dotnetrdf.org/configuration#"
coin,"http://purl.org/court/def/2009/coin#"
rda,"http://www.rdaregistry.info/"
wlp,"http://weblab-project.org/core/model/property/processing/"
xforms,"http://www.w3.org/2002/xforms/"
conserv,"http://conserv.deri.ie/ontology#"
address,"http://schemas.talis.com/2005/address/schema#"
lp,"http://launchpad.net/rdf/launchpad#"
puc,"http://purl.org/NET/puc#"
wdr,"http://www.w3.org/2007/05/powder#"
dady,"http://purl.org/NET/dady#"
viaf,"http://viaf.org/viaf/"
dbpp,"http://dbpedia.org/property/"
push,"http://www.w3.org/2007/uwa/context/push.owl#"
opo,"http://online-presence.net/opo/ns#"
fea,"http://vocab.data.gov/def/fea#"
chord,"http://purl.org/ontology/chord/"
payment,"http://reference.data.gov.uk/def/payment#"
article,"http://ogp.me/ns/article#"
swivt,"http://semantic-mediawiki.org/swivt/1.0#"
br,"http://vocab.deri.ie/br#"
enc,"http://www.w3.org/2001/04/xmlenc#"
eclap,"http://www.eclap.eu/schema/eclap/"
mp,"http://jicamaro.info/mp#"
cogs,"http://vocab.deri.ie/cogs#"
bridge,"http://purl.org/vocommons/bridge#"
toby,"http://tobyinkster.co.uk/#"
evset,"http://dsnotify.org/vocab/eventset/0.1/"
fo,"http://www.w3.org/1999/XSL/Format#"
meetup,"http://www.lotico.com/meetup/"
dcmitype,"http://purl.org/dc/dcmitype/"
pobo,"http://purl.obolibrary.org/obo/"
dcr,"http://www.isocat.org/ns/dcr.rdf#"
wi,"http://purl.org/ontology/wi/core#"
voag,"http://voag.linkedmodel.org/schema/voag#"
hlisting,"http://sindice.com/hlisting/0.1/"
lifecycle,"http://purl.org/vocab/lifecycle/schema#"
posh,"http://poshrdf.org/ns/posh/"
wai,"http://purl.org/wai#"
oboe,"http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#"
lex,"http://purl.org/lex#"
lotico,"http://www.lotico.com/resource/"
nsa,"http://multimedialab.elis.ugent.be/organon/ontologies/ninsuna#"
r2rml,"http://www.w3.org/ns/r2rml#"
agro,"http://purl.obolibrary.org/obo/agro.owl#"
profiling,"http://ontologi.es/profiling#"
ddl,"http://purl.org/vocab/riro/ddl#"
bte,"http://purl.org/twc/vocab/between-the-edges/"
vitro,"http://vitro.mannlib.cornell.edu/ns/vitro/public#"
lingvoj,"http://www.lingvoj.org/ontology#"
datafaqs,"http://purl.org/twc/vocab/datafaqs#"
p3p,"http://www.w3.org/2002/01/p3prdfv1#"
oac,"https://w3id.org/oac#"
oboinowl,"http://www.geneontology.org/formats/oboInOwl#"
common,"http://www.w3.org/2007/uwa/context/common.owl#"
sail,"http://www.openrdf.org/config/sail#"
teach,"http://linkedscience.org/teach/ns#"
rooms,"http://vocab.deri.ie/rooms#"
sysont,"http://ns.ontowiki.net/SysOnt/"
fls,"http://lukasblaho.sk/football_league_schema#"
wnschema,"http://www.cogsci.princeton.edu/~wn/schema/"
swanqs,"http://purl.org/swan/1.2/qualifiers/"
anca,"http://users.utcluj.ro/~raluca/rdf_ontologies_ralu/ralu_modified_ontology_pizzas2_0#"
uni,"http://purl.org/weso/uni/uni.html#"
ogp,"http://ogp.me/ns#"
kwijibo,"http://kwijibo.talis.com/"
cdc,"https://w3id.org/cdc#"
ldap,"http://purl.org/net/ldap/"
pol,"http://escience.rpi.edu/ontology/semanteco/2/0/pollution.owl#"
data,"http://data.odw.tw/"
ann,"http://www.w3.org/2000/10/annotation-ns#"
h5,"http://buzzword.org.uk/rdf/h5#"
oslc,"http://open-services.net/ns/core#"
hospital,"http://www.agfa.com/w3c/2009/hospital#"
osn,"http://spatial.ucd.ie/lod/osn/"
rdfa,"http://www.w3.org/ns/rdfa#"
esd,"http://def.esd.org.uk/"
algo,"http://securitytoolbox.appspot.com/securityAlgorithms#"
lastfm,"http://purl.org/ontology/last-fm/"
calli,"http://callimachusproject.org/rdf/2009/framework#"
recipe,"http://linkedrecipes.org/schema/"
b2bo,"http://purl.org/b2bo#"
frame,"http://www.ontologydesignpatterns.org/ont/framenet/abox/frame/"
esdir,"http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/direccion-postal#"
play,"http://uriplay.org/spec/ontology/#"
xmls,"http://www.w3.org/2001/XMLSchema#"
dnb,"http://d-nb.info/gnd/"
ne,"http://umbel.org/umbel/ne/"
countries,"http://eulersharp.sourceforge.net/2003/03swap/countries#"
fab,"http://purl.org/fab/ns#"
mygrid,"http://www.mygrid.org.uk/ontology#"
phss,"http://ns.poundhill.com/phss/1.0/"
geom,"http://data.ign.fr/def/geometrie#"
oat,"http://openlinksw.com/schemas/oat/"
shv,"http://ns.aksw.org/spatialHierarchy/"
reve,"http://data.eurecom.fr/ontology/reve#"
sl,"http://www.semanlink.net/2001/00/semanlink-schema#"
grddl,"http://www.w3.org/2003/g/data-view#"
tarot,"http://data.totl.net/tarot/card/"
like,"http://ontologi.es/like#"
lt,"http://diplomski.nelakolundzija.org/LTontology.rdf#"
card,"http://www.ashutosh.com/test/"
psych,"http://purl.org/vocab/psychometric-profile/"
irrl,"http://www.ontologydesignpatterns.org/cp/owl/informationobjectsandrepresentationlanguages.owl#"
ebucore,"http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#"
places,"http://purl.org/ontology/places#"
ncbitaxon,"http://purl.obolibrary.org/obo/NCBITaxon_"
prissma,"http://ns.inria.fr/prissma/v1#"
care,"http://eulersharp.sourceforge.net/2003/03swap/care#"
sioca,"http://rdfs.org/sioc/actions#"
np,"http://www.nanopub.org/nschema#"
infosys,"http://www.infosys.com/"
eztag,"http://ontologies.ezweb.morfeo-project.org/eztag/ns#"
cao,"http://purl.org/makolab/caont/"
swandr,"http://purl.org/swan/1.2/discourse-relationships/"
mei,"http://www.music-encoding.org/ns/mei/"
rv,"https://data.elsevier.com/research/schema/rv/"
sm,"http://topbraid.org/sparqlmotion#"
wl,"http://www.wsmo.org/ns/wsmo-lite#"
ple,"http://pleiades.stoa.org/places/"
html,"http://www.w3.org/1999/xhtml/"
hcterms,"http://purl.org/uF/hCard/terms/"
san,"http://www.irit.fr/recherches/MELODI/ontologies/SAN#"
drug,"http://www.agfa.com/w3c/2009/drugTherapy#"
scsv,"http://purl.org/NET/schema-org-csv#"
pml,"http://provenanceweb.org/ns/pml#"
sindice,"http://vocab.sindice.net/"
tr,"http://www.thomsonreuters.com/"
ibis,"http://purl.org/ibis#"
remus,"http://www.semanticweb.org/ontologies/2010/6/Ontology1279614123500.owl#"
wgspos,"http://www.w3.org/2003/01/geo/wgs84_pos#"
meb,"http://rdf.myexperiment.org/ontologies/base/"
agent,"http://eulersharp.sourceforge.net/2003/03swap/agent#"
omv,"http://omv.ontoware.org/2005/05/ontology#"
csvw,"http://www.w3.org/ns/csvw#"
smiley,"http://www.smileyontology.com/ns#"
pmlp,"http://inference-web.org/2.0/pml-provenance.owl#"
sdm,"https://w3id.org/okn/o/sdm#"
wsc,"http://www.openk.org/wscaim.owl#"
fe,"http://www.ontologydesignpatterns.org/ont/framenet/abox/fe/"
httpvoc,"http://www.w3.org/2006/http#"
geospecies,"http://rdf.geospecies.org/ont/geospecies#"
marl,"http://www.gsi.dit.upm.es/ontologies/marl/ns#"
rdaa,"http://rdaregistry.info/Elements/a/"
wisski,"http://wiss-ki.eu/"
olo,"http://purl.org/ontology/olo/core#"
parl,"https://id.parliament.uk/schema/"
opwn,"http://www.ontologyportal.org/WordNet.owl#"
wbp,"http://worldbank.270a.info/property/"
osr,"http://dati.senato.it/osr/"
hxl,"http://hxl.humanitarianresponse.info/ns/#"
rulz,"http://purl.org/NET/rulz#"
tags,"http://www.holygoat.co.uk/owl/redwood/0.1/tags/"
ezcontext,"http://ontologies.ezweb.morfeo-project.org/ezcontext/ns#"
geofla,"http://data.ign.fr/ontologies/geofla#"
wfm,"http://purl.org/net/wf-motifs#"
status,"http://www.w3.org/2003/06/sw-vocab-status/ns#"
pubmed,"http://bio2rdf.org/pubmed_vocabulary:"
ops,"https://w3id.org/ops#"
iswc,"http://annotation.semanticweb.org/2004/iswc#"
grel,"http://users.ugent.be/~bjdmeest/function/grel.ttl#"
rdapo,"http://rdaregistry.info/Elements/p/object/"
fno,"https://w3id.org/function/ontology#"
nex,"http://www.nexml.org/2009/"
ecb,"http://ecb.270a.info/class/1.0/"
sql,"http://ns.inria.fr/ast/sql#"
icaltzd,"http://www.w3.org/2002/12/cal/icaltzd#"
units,"http://eulersharp.sourceforge.net/2003/03swap/units#"
dita,"http://purl.org/dita/ns#"
dbt,"http://dbpedia.org/resource/Template:"
vaem,"http://www.linkedmodel.org/schema/vaem#"
arpfo,"http://vocab.ouls.ox.ac.uk/projectfunding#"
wordmap,"http://purl.org/net/ns/wordmap#"
cb,"http://cbasewrap.ontologycentral.com/vocab#"
prf,"http://www.openmobilealliance.org/tech/profiles/UAPROF/ccppschema-20021212#"
pimo,"http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#"
human,"http://eulersharp.sourceforge.net/2003/03swap/human#"
xt,"http://purl.org/twc/vocab/cross-topix#"
life,"http://life.deri.ie/schema/"
wbc,"http://worldbank.270a.info/classification/"
osoc,"http://web-semantics.org/ns/opensocial#"
okkam,"http://models.okkam.org/ENS-core-vocabulary#"
webtlab,"http://webtlab.it.uc3m.es/"
dsp,"http://purl.org/metainfo/terms/dsp#"
aapi,"http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#"
lr,"http://linkedrecipes.org/schema/"
session,"http://redfoot.net/2005/session#"
muni,"http://vocab.linkeddata.es/urbanismo-infraestructuras/territorio#"
elog,"http://eulersharp.sourceforge.net/2003/03swap/log-rules#"
fd,"http://foodable.co/ns/"
archdesc,"http://archdesc.info/archEvent#"
rdagr1,"http://rdvocab.info/Elements/"
zbwext,"http://zbw.eu/namespaces/zbw-extensions/"
wao,"http://webtlab.it.uc3m.es/2010/10/WebAppsOntology#"
pccz,"http://purl.org/procurement/public-contracts-czech#"
prefix,"http://prefix.cc/"
ens,"http://models.okkam.org/ENS-core-vocabulary.owl#"
open,"http://open.vocab.org/terms/"
qa,"http://www.mit.jyu.fi/ai/TRUST_Ontologies/QA.owl#"
td,"https://www.w3.org/2019/wot/td#"
pns,"http://data.press.net/ontology/stuff/"
imreg,"http://www.w3.org/2004/02/image-regions#"
psh,"http://ns.inria.fr/probabilistic-shacl/"
ext,"http://mu.semte.ch/vocabularies/ext/"
span,"http://www.ifomis.org/bfo/1.1/span#"
geographis,"http://telegraphis.net/ontology/geography/geography#"
visit,"http://purl.org/net/vocab/2004/07/visit#"
dis,"http://stanbol.apache.org/ontology/disambiguation/disambiguation#"
gridworks,"http://purl.org/net/opmv/types/gridworks#"
fowl,"http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#"
derecho,"http://purl.org/derecho#"
rdo,"http://purl.org/rdo/ns#"
frbre,"http://purl.org/vocab/frbr/extended#"
bl,"https://w3id.org/biolink/vocab/"
agents,"http://eulersharp.sourceforge.net/2003/03swap/agent#"
gv,"http://rdf.data-vocabulary.org/#"
req,"http://purl.org/req/"
ecc,"https://ns.eccenca.com/"
ncal,"http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#"
admssw,"http://purl.org/adms/sw/"
osgb,"http://data.ordnancesurvey.co.uk/id/"
c4n,"http://vocab.deri.ie/c4n#"
odp,"http://ontologydesignpatterns.org/"
provenir,"http://knoesis.wright.edu/provenir/provenir.owl#"
gc,"http://www.oegov.org/core/owl/gc#"
doco,"http://purl.org/spar/doco/"
xsl,"http://www.w3.org/1999/XSL/Transform#"
set,"http://www.w3.org/2000/10/swap/set#"
opus,"http://lsdis.cs.uga.edu/projects/semdis/opus#"
skip,"http://skipforward.net/skipforward/resource/"
tvc,"http://www.essepuntato.it/2012/04/tvc/"
timeline,"http://purl.org/NET/c4dm/timeline.owl#"
dgtwc,"http://data-gov.tw.rpi.edu/2009/data-gov-twc.rdf#"
r2r,"http://www4.wiwiss.fu-berlin.de/bizer/r2r/"
dummy,"http://hello.com/"
pmlt,"http://inference-web.org/2.0/pml-trust.owl#"
eprints,"http://eprints.org/ontology/"
copyright,"http://rhizomik.net/ontologies/copyrightonto.owl#"
pam,"http://prismstandard.org/namespaces/pam/2.0/"
visko,"http://trust.utep.edu/visko/ontology/visko-operator-v3.owl#"
json,"https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf#"
fc,"http://www.freeclass.eu/freeclass_v1#"
un,"http://www.w3.org/2007/ont/unit#"
orca,"http://geni-orca.renci.org/owl/topology.owl#"
swanpav,"http://purl.org/swan/1.2/pav/"
organiz,"http://eulersharp.sourceforge.net/2003/03swap/organization#"
ecos,"http://purl.org/ecos#"
out,"http://ontologies.hypios.com/out#"
emotion,"http://ns.inria.fr/emoca#"
soap,"http://www.w3.org/2003/05/soap-envelope/"
func,"http://www.w3.org/2007/rif-builtin-function#"
aair,"http://xmlns.notu.be/aair#"
tp,"https://triplydb.com/Triply/tp/def/"
spatial,"http://geovocab.org/spatial#"
qdoslf,"http://foaf.qdos.com/lastfm/schema/"
carfo,"http://purl.org/carfo#"
decl,"http://www.linkedmodel.org/1.0/schema/decl#"
agetec,"http://www.agetec.org/"
nid3,"http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#"
provone,"http://purl.org/provone#"
swanci,"http://purl.org/swan/1.2/citations/"
ipad,"http://www.padinthecity.com/"
dtype,"http://www.linkedmodel.org/schema/dtype#"
atomowl,"http://bblfish.net/work/atom-owl/2006-06-06/#"
kw,"http://kwantu.net/kw/"
kontakt,"http://richard.cyganiak.de/"
lark1,"http://users.utcluj.ro/~raluca/ontology/Ontology1279614123500.owl#"
pna,"http://data.press.net/ontology/asset/"
prvtypes,"http://purl.org/net/provenance/types#"
fl,"http://eulersharp.sourceforge.net/2003/03swap/fl-rules#"
fcm,"http://eulersharp.sourceforge.net/2006/02swap/fcm#"
wapp,"http://ns.rww.io/wapp#"
geop,"http://aims.fao.org/aos/geopolitical.owl#"
dive,"http://scubadive.networld.to/dive.rdf#"
tripfs,"http://purl.org/tripfs/2010/02#"
eye,"http://jena.hpl.hp.com/Eyeball#"
spif,"http://spinrdf.org/spif#"
xhtmlvocab,"http://www.w3.org/1999/xhtml/vocab/"
oj,"http://ontojob.at/"
comm,"http://vocab.resc.info/communication#"
prolog,"http://eulersharp.sourceforge.net/2003/03swap/prolog#"
rdam,"http://rdaregistry.info/Elements/m/"
trackback,"http://madskills.com/public/xml/rss/module/trackback/"
oboro,"http://obofoundry.org/ro/ro.owl#"
pne,"http://data.press.net/ontology/event/"
geodata,"http://sws.geonames.org/"
plink,"http://buzzword.org.uk/rdf/personal-link-types#"
mesh,"http://id.nlm.nih.gov/mesh/"
xesam,"http://freedesktop.org/standards/xesam/1.0/core#"
gelo,"http://krauthammerlab.med.yale.edu/ontologies/gelo#"
semtweet,"http://semantictweet.com/"
rad,"http://www.w3.org/ns/rad#"
myprefix,"http://myprefix.org/"
hemogram,"http://www.agfa.com/w3c/2009/hemogram#"
nxp,"http://purl.org/nxp/schema/v1/"
nsl,"http://purl.org/ontology/storyline/"
sgv,"http://www.w3.org/TR/SVG/"
kdo,"http://kdo.render-project.eu/kdo#"
qu,"http://purl.oclc.org/NET/ssnx/qu/qu#"
ec,"http://eulergui.sourceforge.net/contacts.owl.n3#"
sad,"http://vocab.deri.ie/sad#"
aims,"http://aims.fao.org/aos/common/"
ecpo,"http://purl.org/ontology/ecpo#"
wairole,"http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#"
enhancer,"http://stanbol.apache.org/ontology/enhancer/enhancer#"
emp,"http://purl.org/ctic/empleo/oferta#"
oper,"http://sweet.jpl.nasa.gov/2.0/mathOperation.owl#"
aneo,"http://akonadi-project.org/ontologies/aneo#"
xch,"http://oanda2rdf.appspot.com/xch/"
evopat,"http://ns.aksw.org/Evolution/"
transit,"http://vocab.org/transit/terms/"
commons,"http://commons.psi.enakting.org/def/"
ospost,"http://data.ordnancesurvey.co.uk/ontology/postcode/"
httpm,"http://www.w3.org/2011/http-methods#"
dgfoaf,"http://west.uni-koblenz.de/ontologies/2010/07/dgfoaf.owl#"
sawsdl,"http://www.w3.org/ns/sawsdl#"
gxa,"http://www.ebi.ac.uk/gxa/"
igeo,"http://rdf.insee.fr/def/geo#"
bioskos,"http://eulersharp.sourceforge.net/2003/03swap/bioSKOSSchemes#"
languages,"http://eulersharp.sourceforge.net/2003/03swap/languages#"
tcga,"http://purl.org/tcga/core#"
aigp,"http://swat.cse.lehigh.edu/resources/onto/aigp.owl#"
sdgp,"http://stats.data-gov.ie/property/"
eseduc,"http://www.purl.org/ontologia/eseduc#"
re,"http://www.w3.org/2000/10/swap/reason#"
protons,"http://proton.semanticweb.org/2005/04/protons#"
vf,"https://w3id.org/valueflows/ont/vf#"
agrelon,"http://d-nb.info/standards/elementset/agrelon#"
linkedct,"http://data.linkedct.org/vocab/"
ccom,"http://purl.org/ontology/cco/mappings#"
mte,"http://nl.ijs.si/ME/owl/"
hgnc,"http://bio2rdf.org/hgnc:"
cmd,"https://w3id.org/cmd#"
tei,"http://www.tei-c.org/ns/1.0/"
oboso,"http://purl.org/obo/owl/SO#"
quak,"http://dev.w3.org/cvsweb/2000/quacken/vocab#"
ling,"http://purl.org/voc/ling/"
cl,"http://advene.org/ns/cinelab/"
dayta,"http://dayta.me/resource#"
foo,"http://filmontology.org/ontology/1.0/"
metalex,"http://www.metalex.eu/schema/1.0#"
rich,"http://rdf.data-vocabulary.org/"
theatre,"http://purl.org/theatre#"
gs1,"https://ref.gs1.org/voc/"
aersv,"http://aers.data2semantics.org/vocab/"
w3p,"http://prov4j.org/w3p/"
swpo,"http://sw-portal.deri.org/ontologies/swportal#"
opmv,"http://purl.org/net/opmv/ns#"
gazetteer,"http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/"
wm,"http://ns.inria.fr/webmarks#"
nndsr,"http://semanticdiet.com/schema/usda/nndsr/"
xfnv,"http://vocab.sindice.com/xfn#"
coeus,"http://bioinformatics.ua.pt/coeus/"
rlno,"http://rdflivenews.aksw.org/ontology/"
nyt,"http://data.nytimes.com/"
dssn,"http://purl.org/net/dssn/"
wf,"http://www.w3.org/2005/01/wf/flow#"
dbpedia2,"http://dbpedia.org/property/"
htir,"http://www.w3.org/2011/http#"
swanag,"http://purl.org/swan/1.2/agents/"
sig,"http://purl.org/signature#"
quantity,"http://qudt.org/schema/quantity#"
scowt,"http://purl.org/weso/ontologies/scowt#"
estrn,"http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/transporte#"
iron,"http://purl.org/ontology/iron#"
rso,"http://www.researchspace.org/ontology/"
frad,"http://iflastandards.info/ns/fr/frad/"
rpubl,"http://rinfo.lagrummet.se/ns/2008/11/rinfo/publ#"
luc,"http://www.ontotext.com/owlim/lucene#"
dossier,"https://data.omgeving.vlaanderen.be/ns/dossier#"
xbrli,"http://www.xbrl.org/2003/instance#"
dbpo,"http://dbpedia.org/ontology/"
tripfs2,"http://purl.org/tripfs/2010/06#"
cidoccrm,"http://purl.org/NET/cidoc-crm/core#"
oecd,"http://oecd.270a.info/dataset/"
italy,"http://data.kasabi.com/dataset/italy/schema/"
gbv,"http://purl.org/ontology/gbv/"
moby,"http://www.mygrid.org.uk/mygrid-moby-service#"
dl,"http://ontology.ip.rm.cnr.it/ontologies/DOLCE-Lite#"
oax,"http://www.w3.org/ns/openannotation/extensions/"
rdaw,"http://rdaregistry.info/Elements/w/"
flow,"http://www.w3.org/2005/01/wf/flow#"
bookmark,"http://www.w3.org/2002/01/bookmark#"
ru,"http://purl.org/imbi/ru-meta.owl#"
owls,"http://www.daml.org/services/owl-s/1.2/Service.owl#"
humanbody,"http://eulersharp.sourceforge.net/2003/03swap/humanBody#"
pf,"http://jena.hpl.hp.com/ARQ/property#"
bm,"http://bio2rdf.org/"
lgv,"http://linkedgeodata.org/ontology/"
fct,"http://openlinksw.com/services/facets/1.0/"
c4o,"http://purl.org/spar/c4o/"
ls,"http://linkedspending.aksw.org/instance/"
telix,"http://purl.org/telix#"
frapo,"http://purl.org/cerif/frapo/"
intervals,"http://reference.data.gov.uk/def/intervals/"
grs,"http://www.georss.org/georss/"
sro,"http://salt.semanticauthoring.org/ontologies/sro#"
owltime,"http://www.w3.org/TR/owl-time#"
environ,"http://eulersharp.sourceforge.net/2003/03swap/environment#"
goef,"http://purl.org/twc/vocab/goef#"
govtrackus,"http://www.rdfabout.com/rdf/usgov/geo/us/"
kupkb,"http://www.e-lico.eu/data/kupkb/"
wikibase,"http://wikiba.se/ontology#"
events,"http://eulersharp.sourceforge.net/2003/03swap/event#"
tmpl,"http://purl.org/restdesc/http-template#"
abs,"http://abs.270a.info/dataset/"
artstor,"http://simile.mit.edu/2003/10/ontologies/artstor#"
sor,"http://purl.org/net/soron/"
jita,"http://aims.fao.org/aos/jita/"
solid,"http://www.w3.org/ns/solid/terms#"
fingal,"http://vocab.deri.ie/fingal#"
gfo,"http://www.onto-med.de/ontologies/gfo.owl#"
sw,"http://linkedwidgets.org/statisticalwidget/ontology/"
vcardx,"http://buzzword.org.uk/rdf/vcardx#"
no,"http://km.aifb.kit.edu/projects/numbers/number#"
exo,"https://w3id.org/example#"
poder,"http://poderopedia.com/vocab/"
hcard,"http://purl.org/uF/hCard/terms/"
dpd,"http://www.kanzaki.com/ns/dpd#"
crtv,"http://open-services.net/ns/crtv#"
wfdesc,"http://purl.org/wf4ever/wfdesc#"
health,"http://purl.org/twc/health/vocab/"
penis,"http://penis.to/#"
shex,"http://www.w3.org/ns/shex#"
p20,"http://zbw.eu/beta/p20/vocab/"
dqv,"http://www.w3.org/ns/dqv#"
prvr,"http://purl.org/ontology/prv/rules#"
identity,"http://purl.org/twc/ontologies/identity.owl#"
ccard,"http://purl.org/commerce/creditcard#"
rkd,"http://data.rkd.nl/def#"
osp,"http://data.lirmm.fr/ontologies/osp#"
govwild,"http://govwild.org/0.6/GWOntology.rdf/"
arecipe,"http://purl.org/amicroformat/arecipe/"
npgd,"http://ns.nature.com/datasets/"
ends,"http://labs.mondeca.com/vocab/endpointStatus#"
crmdig,"http://www.ics.forth.gr/isl/CRMdig/"
rml,"http://w3id.org/rml/"
va,"http://code-research.eu/ontology/visual-analytics#"
coun,"http://www.daml.org/2001/09/countries/iso-3166-ont#"
lindt,"http://purl.org/NET/lindt#"
atlas,"http://rdf.ebi.ac.uk/resource/atlas/"
skiresort,"http://www.openlinksw.com/ski_resorts/schema#"
genab,"http://eulersharp.sourceforge.net/2003/03swap/genomeAbnormality#"
transmed,"http://www.w3.org/2001/sw/hcls/ns/transmed/"
frbrcore,"http://purl.org/vocab/frbr/core#"
rating,"http://www.tvblob.com/ratings/#"
steel,"https://w3id.org/steel/ProcessOntology/"
clineva,"http://www.agfa.com/w3c/2009/clinicalEvaluation#"
ql,"http://www.w3.org/2004/ql#"
loticoowl,"http://www.lotico.com/ontology/"
osmsemnet,"http://spatial.ucd.ie/2012/08/osmsemnet/"
nocal,"http://vocab.deri.ie/nocal#"
ogorg,"http://opengraph.org/schema/"
lod2,"http://lod2.eu/schema/"
d2r,"http://sites.wiwiss.fu-berlin.de/suhl/bizer/d2r-server/config.rdf#"
cold,"http://purl.org/configurationontology#"
opmw,"http://www.opmw.org/ontology/"
str,"http://nlp2rdf.lod2.eu/schema/string/"
ipo,"http://purl.org/ipo/core#"
stac,"http://securitytoolbox.appspot.com/stac#"
opl,"http://openlinksw.com/schema/attribution#"
hartigprov,"http://purl.org/net/provenance/ns#"
itsmo,"http://ontology.it/itsmo/v1#"
dannet,"http://www.wordnet.dk/owl/instance/2009/03/instances/"
ianarel,"https://www.w3.org/ns/iana/link-relations/relation#"
cf,"http://mmisw.org/ont/cf/parameter/"
daiaserv,"http://purl.org/ontology/daia/Service/"
paia,"http://purl.org/ontology/paia#"
genea,"http://www.owl-ontologies.com/generations.owl#"
nytimes,"http://data.nytimes.com/elements/"
npgg,"http://ns.nature.com/graphs/"
ufmedia,"http://purl.org/microformat/hmedia/"
cdtype,"http://purl.org/cld/cdtype/"
protegedc,"http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl#"
rankrage,"https://rankrage.de/"
dctypes,"http://purl.org/dc/dcmitype/"
idemo,"http://rdf.insee.fr/def/demo#"
occult,"http://data.totl.net/occult/"
wscaim,"http://www.openk.org/wscaim.owl#"
ifc,"http://ifcowl.openbimstandards.org/IFC2X3_Final#"
s4ac,"http://ns.inria.fr/s4ac/v2#"
mohammad,"http://manesht.ir/"
ldr,"http://purl.oclc.org/NET/ldr/ns#"
sci,"http://data.scientology.org/ns/"
daq,"http://purl.org/eis/vocab/daq#"
bcncon,"http://datos.bcn.cl/ontologies/bcn-congress#"
cis,"http://purl.org/NET/cloudisus#"
kbp,"http://tackbp.org/2013/ontology#"
marshall,"http://sites.google.com/site/xgmaitc/"
hasco,"http://hadatac.org/ont/hasco/"
s2s,"http://escience.rpi.edu/ontology/sesf/s2s/4/0/"
ngeoi,"http://vocab.lenka.no/geo-deling#"
mmo,"http://purl.org/momayo/mmo/"
atomrdf,"http://atomowl.org/ontologies/atomrdf#"
l4a,"http://labels4all.info/ns/"
gesis,"http://lod.gesis.org/lodpilot/ALLBUS/vocab.rdf#"
diseasome,"http://www4.wiwiss.fu-berlin.de/diseasome/resource/diseasome/"
pso,"http://purl.org/spar/pso/"
openskos,"http://openskos.org/xmlns#"
rec54,"http://www.w3.org/2001/02pd/rec54.rdf#"
bk,"http://www.provbook.org/ns/#"
curr,"https://w3id.org/cc#"
skos08,"http://www.w3.org/2008/05/skos#"
prism21,"http://prismstandard.org/namespaces/basic/2.1/"
wfprov,"http://purl.org/wf4ever/wfprov#"
lh,"http://vocab.inf.ed.ac.uk/library/holdings#"
verb,"https://w3id.org/verb/"
wno,"http://wordnet-rdf.princeton.edu/ontology#"
lso,"http://linkedspending.aksw.org/ontology/"
doas,"http://deductions.github.io/doas.owl.ttl#"
sam,"http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling#"
odo,"http://ocean-data.org/schema/"
plo,"http://purl.org/net/po#"
gov,"http://gov.genealogy.net/ontology.owl#"
healthcare,"http://www.agfa.com/w3c/2009/healthCare#"
harrisons,"http://harrisons.cc/"
vsto,"http://escience.rpi.edu/ontology/vsto/2/0/vsto.owl#"
ds,"http://purl.org/ctic/dcat#"
dpl,"http://dbpedialite.org/things/"
osukdt,"http://www.ordnancesurvey.co.uk/ontology/Datatypes.owl#"
centrifuge,"http://purl.org/twc/vocab/centrifuge#"
pizza,"http://www.co-ode.org/ontologies/pizza/pizza.owl#"
okg,"http://openknowledgegraph.org/ontology/"
camelot,"http://vocab.ox.ac.uk/camelot#"
category,"http://dbpedia.org/resource/Category:"
bdd,"https://api.bloomberg.com/eap/catalogs/bbg/fields/"
adr,"http://kg.artsdata.ca/resource/"
lio,"http://purl.org/net/lio#"
campsite,"http://www.openlinksw.com/campsites/schema#"
oslo,"http://purl.org/oslo/ns/localgov#"
sbench,"http://swat.cse.lehigh.edu/onto/univ-bench.owl#"
aerols,"http://xmlns.com/aerols/0.1/"
refe,"http://orion.tw.rpi.edu/~xgmatwc/refe/"
insdc,"http://ddbj.nig.ac.jp/ontologies/sequence#"
pronom,"http://reference.data.gov.uk/technical-registry/"
lctr,"http://data.linkedct.org/vocab/resource/"
scor,"http://purl.org/eis/vocab/scor#"
odcs,"http://opendata.cz/infrastructure/odcleanstore/"
mtecore,"http://purl.org/olia/mte/multext-east.owl#"
date,"http://contextus.net/ontology/ontomedia/misc/date#"
dbyago,"http://dbpedia.org/class/yago/"
vgo,"http://purl.org/net/VideoGameOntology#"
biordf,"http://purl.org/net/biordfmicroarray/ns#"
smg,"http://ns.cerise-project.nl/energy/def/cim-smartgrid#"
tac,"http://ns.bergnet.org/tac/0.1/triple-access-control#"
of,"http://owlrep.eu01.aws.af.cm/fridge#"
l4lod,"http://ns.inria.fr/l4lod/v2/"
wkd,"http://schema.wolterskluwer.de/"
ottr,"http://ns.ottr.xyz/templates#"
clinproc,"http://www.agfa.com/w3c/2009/clinicalProcedure#"
bv,"http://purl.org/vocommons/bv#"
b2rpubchem,"http://bio2rdf.org/ns/ns/ns/pubchem#"
scms,"http://ns.aksw.org/scms/annotations/"
dn,"http://purl.org/datanode/ns/"
shoah,"http://dati.cdec.it/lod/shoah/"
mpeg7,"http://rhizomik.net/ontologies/2005/03/Mpeg7-2001.owl#"
mads,"http://www.loc.gov/mads/rdf/v1#"
crv,"http://purl.org/twc/vocab/datacarver#"
saxon,"http://saxon.sf.net/"
ost,"http://w3id.org/ost/ns#"
laposte,"http://data.lirmm.fr/ontologies/laposte#"
te,"http://www.w3.org/2006/time-entry#"
lc,"http://semweb.mmlab.be/ns/linkedconnections#"
csm,"http://purl.org/csm/1.0#"
sso,"http://nlp2rdf.lod2.eu/schema/sso/"
swo,"http://www.ebi.ac.uk/swo/"
shw,"http://paul.staroch.name/thesis/SmartHomeWeather.owl#"
opllic,"http://www.openlinksw.com/ontology/licenses#"
esco,"http://data.europa.eu/esco/model#"
decision,"https://decision-ontology.googlecode.com/svn/trunk/decision.owl#"
rdacarrier,"http://rdvocab.info/termList/RDACarrierType/"
wsl,"http://www.wsmo.org/ns/wsmo-lite#"
wro,"http://purl.org/net/wf4ever/ro#"
alchemy,"http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#"
pod,"https://project-open-data.cio.gov/v1.1/schema/#"
thors,"http://resource.geosciml.org/ontology/timescale/thors#"
clinic,"http://example.com/clinic#"
mmd,"http://musicbrainz.org/ns/mmd-1.0#"
malignneo,"http://www.agfa.com/w3c/2009/malignantNeoplasm#"
germplasm,"http://purl.org/germplasm/terms#"
puelia,"http://kwijibo.talis.com/vocabs/puelia#"
yo,"http://yovisto.com/"
fma,"http://sig.uw.edu/fma#"
geovocab,"http://geovocab.org/"
webbox,"http://webbox.ecs.soton.ac.uk/ns#"
pkmn,"http://pokedex.dataincubator.org/pkm/"
ebu,"http://semantic.eurobau.com/eurobau-utility.owl#"
shacl,"http://www.w3.org/ns/shacl#"
chembl,"http://rdf.ebi.ac.uk/terms/chembl#"
ekaw,"http://data.semanticweb.org/conference/ekaw/2012/complete/"
omnlife,"http://open-multinet.info/ontology/omn-lifecycle#"
cart,"http://purl.org/net/cartCoord#"
strdf,"http://strdf.di.uoa.gr/ontology#"
rmo,"http://eatld.et.tu-dresden.de/rmo#"
cpsv,"http://purl.org/vocab/cpsv#"
antenne,"https://data.zendantennes.omgeving.vlaanderen.be/ns/zendantenne#"
prvt,"http://purl.org/net/provenance/types#"
pattern,"http://www.essepuntato.it/2008/12/pattern#"
msr,"http://www.telegraphis.net/ontology/measurement/measurement#"
opencyc,"http://sw.opencyc.org/concept/"
sao,"http://salt.semanticauthoring.org/ontologies/sao#"
ptop,"http://www.ontotext.com/proton/protontop#"
c4dm,"http://purl.org/NET/c4dm/event.owl#"
tisc,"http://observedchange.com/tisc/ns#"
hifm,"http://purl.org/net/hifm/data#"
cts2,"http://schema.omg.org/spec/CTS2/1.0/"
ncit,"https://ncit.nci.nih.gov/ncitbrowser/ConceptReport.jsp?dictionary=NCI_Thesaurus&ns=ncit&code="
property,"http://fr.dbpedia.org/property/"
art,"http://w3id.org/art/terms/1.0/"
bn,"http://babelnet.org/rdf/"
oan,"http://data.lirmm.fr/ontologies/oan/"
ev,"http://www.w3.org/2001/xml-events/"
dcndl,"http://ndl.go.jp/dcndl/terms/"
bcnnorms,"http://datos.bcn.cl/ontologies/bcn-norms#"
daisy,"http://www.daisy.org/z3998/2012/vocab/"
latitude,"https://www.w3.org/2006/vcard/ns#"
dawgt,"http://www.w3.org/2001/sw/DataAccess/tests/test-dawg#"
stream,"http://dbpedia.org/ontology/Stream/"
dvia,"http://data.eurecom.fr/ontology/dvia#"
ssso,"http://purl.org/ontology/ssso#"
holding,"http://purl.org/ontology/holding#"
trait,"http://contextus.net/ontology/ontomedia/ext/common/trait#"
qrl,"http://www.aifb.kit.edu/project/ld-retriever/qrl#"
vin,"http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#"
semio,"http://www.lingvoj.org/semio#"
iol,"http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl#"
mico,"http://www.mico-project.eu/ns/platform/1.0/schema#"
namespaces,"https://vg.no/"
guo,"http://purl.org/hpi/guo#"
faq,"http://www.openlinksw.com/ontology/faq#"
rdamt,"http://rdaregistry.info/termList/RDAMediaType/"
bihap,"http://bihap.kb.gov.tr/ontology/"
tao,"http://pubannotation.org/ontology/tao.owl#"
dpc,"http://hospee.org/ontologies/dpc/"
mod,"http://www.isibang.ac.in/ns/mod#"
goog,"http://schema.googleapis.com/"
oarj,"http://opendepot.org/reference/linked/1.0/"
sioctypes,"http://rdfs.org/sioc/types#"
security,"http://securitytoolbox.appspot.com/securityMain#"
part,"http://purl.org/vocab/participation/schema#"
fos,"http://futurios.org/fos/spec/"
rdae,"http://rdaregistry.info/Elements/e/"
ep,"http://eprints.org/ontology/"
cpant,"http://purl.org/NET/cpan-uri/terms#"
gf,"http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature#"
bco,"http://purl.obolibrary.org/obo/bco.owl#"
hints2005,"http://purl.org/twc/cabig/model/HINTS2005-1.owl#"
lsc,"http://linkedscience.org/lsc/ns#"
ecrm,"http://erlangen-crm.org/current/"
fao,"http://fao.270a.info/dataset/"
rssynd,"http://web.resource.org/rss/1.0/modules/syndication/"
quantities,"http://eulersharp.sourceforge.net/2003/03swap/quantitiesExtension#"
gastro,"http://www.ebsemantics.net/gastro#"
seq,"http://www.ontologydesignpatterns.org/cp/owl/sequence.owl#"
cosmo,"http://purl.org/ontology/cosmo#"
jpo,"http://rdf.jpostdb.org/ontology/jpost.owl#"
nerd,"http://nerd.eurecom.fr/ontology#"
rdarel2,"http://metadataregistry.org/uri/schema/RDARelationshipsGR2/"
ccrel,"http://creativecommons.org/ns#"
omapi,"http://purl.org/omapi/0.2/#"
seokoeln,"http://rankrage.de/"
telmap,"http://purl.org/telmap/"
emtr,"http://purl.org/NET/ssnext/electricmeters#"
onc,"http://www.ics.forth.gr/isl/oncm/core#"
zoomaterms,"http://rdf.ebi.ac.uk/vocabulary/zooma/"
gl,"http://schema.geolink.org/"
xlime,"http://xlime-project.org/vocab/"
dr,"http://purl.org/swan/2.0/discourse-relationships/"
odrs,"http://schema.theodi.org/odrs#"
who,"http://www.who.int/vocab/ontology#"
scoro,"http://purl.org/spar/scoro/"
mv,"http://schema.mobivoc.org/"
rdafr,"http://rdaregistry.info/termList/frequency/"
vsso,"http://automotive.eurecom.fr/vsso#"
obsm,"http://rdf.geospecies.org/methods/observationMethod#"
moac,"http://observedchange.com/moac/ns#"
my,"http://www.mobile.com/model/"
li,"http://def.seegrid.csiro.au/isotc211/iso19115/2003/lineage#"
cbo,"http://comicmeta.org/cbo/"
wlo,"http://purl.org/ontology/wo/"
lldr,"http://purl.oclc.org/NET/lldr/ns#"
oss,"http://opendata.caceres.es/def/ontosemanasanta#"
dcs,"http://ontologi.es/doap-changeset#"
dash,"http://datashapes.org/dash#"
turismo,"http://idi.fundacionctic.org/cruzar/turismo#"
sdmxd,"http://purl.org/linked-data/sdmx/2009/dimension#"
ljkl,"http://teste.com/"
tw,"http://tw.rpi.edu/schema/"
w3con,"http://www.w3.org/2000/10/swap/pim/contact#"
kai,"http://kai.uni-kiel.de/"
stories,"http://purl.org/ontology/stories/"
bgcat,"http://bg.dbpedia.org/resource/Категория:"
xrd,"http://docs.oasis-open.org/ns/xri/xrd-1.0#"
cbase,"http://ontologycentral.com/2010/05/cb/vocab#"
qud,"http://qudt.org/1.1/schema/qudt#"
oml,"http://def.seegrid.csiro.au/ontology/om/om-lite#"
dbcat,"http://dbpedia.org/resource/Category:"
ll,"http://lodlaundromat.org/resource/"
spt,"http://spitfire-project.eu/ontology/ns/"
emoca,"http://ns.inria.fr/emoca#"
eui,"http://institutions.publicdata.eu/#"
conf,"http://richard.cyganiak.de/2007/pubby/config.rdf#"
lodac,"http://lod.ac/ns/lodac#"
bgt,"https://bgt.basisregistraties.overheid.nl/bgt/def/"
pco,"http://purl.org/procurement/public-contracts#"
wikterms,"http://wiktionary.dbpedia.org/terms/"
kbv,"https://id.kb.se/vocab/"
bcnbio,"http://datos.bcn.cl/ontologies/bcn-biographies#"
auto,"http://auto.schema.org/"
rdamedia,"http://rdvocab.info/termList/RDAMediaType/"
ctorg,"http://purl.org/ctic/infraestructuras/organizacion#"
dqm,"http://purl.org/dqm-vocabulary/v1/dqm#"
ogc,"http://www.opengis.net/def/"
cvbase,"http://purl.org/captsolo/resume-rdf/0.2/base#"
accom,"http://purl.org/acco/ns#"
esaloj,"http://vocab.linkeddata.es/datosabiertos/def/turismo/alojamiento#"
onssprel,"http://www.ordnancesurvey.co.uk/ontology/SpatialRelations/v0.2/SpatialRelations.owl#"
xcql,"http://docs.oasis-open.org/ns/search-ws/xcql#"
raul,"http://vocab.deri.ie/raul#"
rdafnm,"http://rdaregistry.info/termList/FormNoteMus/"
delta,"http://www.w3.org/2004/delta#"
rdasoi,"http://rdaregistry.info/termList/statIdentification/"
oplcert,"http://www.openlinksw.com/schemas/cert#"
finlaw,"http://purl.org/finlex/schema/laki/"
twaapi,"http://purl.org/twc/vocab/aapi-schema#"
bgn,"http://bibliograph.net/schemas/"
op,"http://environment.data.gov.au/def/op#"
esequip,"http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/equipamiento#"
poste,"http://data.lirmm.fr/ontologies/poste#"
wb,"http://data.worldbank.org/"
sg,"http://name.scigraph.com/ontologies/core/"
tblcard,"http://www.w3.org/People/Berners-Lee/card#"
infor,"http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#"
swperson,"http://data.semanticweb.org/person/"
mged,"http://mged.sourceforge.net/ontologies/MGEDOntology.owl#"
doi,"https://doi.org/"
mmf,"http://linkedmultimedia.org/sparql-mm/ns/1.0.0/function#"
affymetrix,"http://bio2rdf.org/affymetrix_vocabulary:"
od,"http://purl.org/twc/vocab/opendap#"
brick,"https://brickschema.org/schema/Brick#"
icane,"http://www.icane.es/opendata/vocab#"
llo,"http://lodlaundromat.org/ontology/"
fam,"http://vocab.fusepool.info/fam#"
mil,"http://rdf.muninn-project.org/ontologies/military#"
pnc,"http://data.press.net/ontology/classification/"
rdarel,"http://rdvocab.info/RDARelationshipsWEMI/"
qvoc,"http://mlode.nlp2rdf.org/quranvocab#"
npgx,"http://ns.nature.com/extensions/"
stats,"http://purl.org/rdfstats/stats#"
ox,"http://vocab.ox.ac.uk/projectfunding#"
call,"http://webofcode.org/wfn/call:"
xapi,"https://w3id.org/xapi/ontology#"
disease,"http://www.agfa.com/w3c/2009/humanDisorder#"
aers,"http://aers.data2semantics.org/resource/"
pnt,"http://data.press.net/ontology/tag/"
nidm,"http://nidm.nidash.org/"
vsws,"http://verticalsearchworks.com/ontology/synset#"
lsmap,"http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#"
bgdbp,"http://bg.dbpedia.org/property/"
mvco,"http://purl.oclc.org/NET/mvco.owl#"
lcy,"http://purl.org/vocab/lifecycle/schema#"
osgeom,"http://data.ordnancesurvey.co.uk/ontology/geometry/"
mt,"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#"
oae,"http://www.ics.forth.gr/isl/oae/core#"
mb,"http://dbtune.org/musicbrainz/resource/instrument/"
rvdata,"http://data.rvdata.us/"
kees,"http://linkeddata.center/kees/v1#"
allot,"https://w3id.org/akn/ontology/allot#"
isocat,"http://www.isocat.org/datcat/"
biro,"http://purl.org/spar/biro/"
pni,"http://data.press.net/ontology/identifier/"
onyx,"http://www.gsi.dit.upm.es/ontologies/onyx/ns#"
tsioc,"http://rdfs.org/sioc/types#"
dogont,"http://elite.polito.it/ontologies/dogont.owl#"
osspr,"http://data.ordnancesurvey.co.uk/ontology/spatialrelations/"
olad,"http://openlad.org/vocab#"
im,"http://imgpedia.dcc.uchile.cl/resource/"
eumida,"http://data.kasabi.com/dataset/eumida/terms/"
mrel,"http://id.loc.gov/vocabulary/relators/"
particip,"http://purl.org/vocab/participation/schema#"
pois,"http://purl.oclc.org/POIS/vcblr#"
tg,"https://triplydb.com/Triply/tg/def/"
rdacontent,"http://rdvocab.info/termList/RDAContentType/"
pkm,"http://www.ontotext.com/proton/protonkm#"
pingback,"http://purl.org/net/pingback/"
scip,"http://lod.taxonconcept.org/ontology/sci_people.owl#"
lsqv,"http://lsq.aksw.org/vocab#"
d2d,"http://rdfns.org/d2d/"
vartrans,"http://www.w3.org/ns/lemon/vartrans#"
spfood,"http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl#"
gawd,"http://gawd.atlantides.org/terms/"
lmo,"http://linkedmultimedia.org/sparql-mm/ns/2.0.0/ontology#"
fcs,"http://clarin.eu/fcs/resource#"
drm,"http://vocab.data.gov/def/drm#"
deps,"http://ontologi.es/doap-deps#"
odapp,"http://vocab.deri.ie/odapp#"
dbpr,"http://dbpedia.org/resource/"
viso,"http://purl.org/viso/"
graffle,"http://purl.org/twc/vocab/vsr/graffle#"
bwb,"http://doc.metalex.eu/bwb/ontology/"
app,"http://jmvanel.free.fr/ontology/software_applications.n3#"
snarm,"http://rdf.myexperiment.org/ontologies/snarm/"
c9d,"http://purl.org/twc/vocab/conversion/"
rdacct,"http://rdaregistry.info/termList/CollTitle/"
agr,"http://promsns.org/def/agr#"
viskov,"http://trust.utep.edu/visko/ontology/visko-view-v3.owl#"
salad,"https://w3id.org/cwl/salad#"
fcp,"http://www.newmedialab.at/fcp/"
coll,"http://purl.org/co/"
geocontext,"http://www.geocontext.org/publ/2013/vocab#"
quty,"http://www.telegraphis.net/ontology/measurement/quantity#"
dcite,"http://purl.org/spar/datacite/"
voidp,"http://www.enakting.org/provenance/voidp/"
gadm,"http://gadm.geovocab.org/ontology#"
pvcs,"http://purl.org/twc/vocab/pvcs#"
friends,"http://www.openarchives.org/OAI/2.0/friends/"
fog,"https://w3id.org/fog#"
lsweb,"http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#"
lden,"http://www.linklion.org/lden/"
origins,"http://origins.link/"
vapour,"http://vapour.sourceforge.net/vocab.rdf#"
ostop,"http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl#"
wn31,"http://wordnet-rdf.princeton.edu/wn31/"
cwrc,"http://sparql.cwrc.ca/ontology/cwrc#"
rdami,"http://rdaregistry.info/termList/modeIssue/"
frb,"http://frb.270a.info/dataset/"
evident,"http://purl.org/net/evident#"
cmdm,"http://infra.clarin.eu/cmd/"
crml,"http://semweb.mmlab.be/ns/rml/condition#"
oh,"http://semweb.mmlab.be/ns/oh#"
gcis,"http://data.globalchange.gov/gcis.owl#"
fincaselaw,"http://purl.org/finlex/schema/oikeus/"
w3po,"http://purl.org/provenance/w3p/w3po#"
s3db,"http://www.s3db.org/core#"
lexcz,"http://purl.org/lex/cz#"
dao,"http://purl.org/dao#"
gpml,"http://vocabularies.wikipathways.org/gpml#"
lmdb,"http://data.linkedmdb.org/"
radion,"http://www.w3.org/ns/radion#"
vag,"http://www.essepuntato.it/2013/10/vagueness/"
orth,"http://purl.org/net/orth#"
dbtont,"http://dbtropes.org/ont/"
gm,"http://def.seegrid.csiro.au/isotc211/iso19107/2003/geometry#"
rdl,"http://data.posccaesar.org/rdl/"
vvo,"http://purl.org/vvo/ns#"
rdagd,"http://rdaregistry.info/termList/gender/"
waarde,"https://lod.milieuinfo.be/ns/waarde#"
mtlo,"http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl#"
employee,"http://www.employee.com/data#"
pic,"http://www.ipaw.info/ns/picaso#"
bot,"https://w3id.org/bot#"
eunis,"http://eunis.eea.europa.eu/rdf/species-schema.rdf#"
saws,"http://purl.org/saws/ontology#"
saif,"http://wwwiti.cs.uni-magdeburg.de/~srahman/"
galaksiya,"http://ontoloji.galaksiya.com/vocab/"
rdatc,"http://rdaregistry.info/termList/trackConfig/"
driver,"http://deductions.github.io/drivers.owl.ttl#"
foam,"https://www.koerperfettwaage-test.de/"
lw,"http://linkedwidgets.org/ontologies/"
tm,"http://def.seegrid.csiro.au/isotc211/iso19108/2002/temporal#"
npdv,"http://sws.ifi.uio.no/vocab/npd#"
agls,"http://www.agls.gov.au/agls/terms/"
ids,"https://w3id.org/idsa/core/"
elec,"http://purl.org/ctic/sector-publico/elecciones#"
tis,"http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#"
rdabm,"http://rdaregistry.info/termList/RDABaseMaterial/"
biotop,"http://purl.org/biotop/biotop.owl#"
lda,"http://purl.org/linked-data/api/vocab#"
prviv,"http://purl.org/net/provenance/integrity#"
dcoid,"http://dx.deepcarbon.net/"
opengov,"http://www.w3.org/opengov#"
dpv,"http://www.w3.org/ns/dpv#"
rdagw,"http://rdaregistry.info/termList/grooveWidth/"
ramon,"http://rdfdata.eionet.europa.eu/ramon/ontology/"
odpart,"http://www.ontologydesignpatterns.org/cp/owl/participation.owl#"
prof,"http://www.w3.org/ns/dx/prof/"
eurostat,"http://dd.eionet.europa.eu/vocabulary/eurostat/"
water,"http://escience.rpi.edu/ontology/semanteco/2/0/water.owl#"
citof,"http://www.essepuntato.it/2013/03/cito-functions#"
hico,"http://purl.org/emmedi/hico/"
ws,"http://www.w3.org/ns/pim/space#"
dq,"http://def.seegrid.csiro.au/isotc211/iso19115/2003/dataquality#"
viskoo,"http://trust.utep.edu/visko/ontology/visko-operator-v3.owl#"
vext,"http://ldf.fi/void-ext#"
d0,"http://ontologydesignpatterns.org/ont/wikipedia/d0.owl#"
company,"http://intellimind.io/ns/company#"
vmm,"http://spi-fm.uca.es/spdef/models/genericTools/vmm/1.0#"
roevo,"http://purl.org/wf4ever/roevo#"
bbcprov,"http://www.bbc.co.uk/ontologies/provenance/"
swpatho,"http://swpatho.ag-nbi.de/context/meta.owl#"
lpeu,"http://purl.org/linkedpolitics/vocabulary/eu/plenary/"
sct,"http://snomed.info/id/"
activity,"https://www.w3.org/TR/activitystreams-vocabulary/"
omdoc,"http://omdoc.org/ontology/"
s4envi,"https://w3id.org/def/saref4envi#"
geosp,"http://rdf.geospecies.org/ont/geospecies#"
pv,"http://ns.inria.fr/provoc#"
webservice,"http://www.openlinksw.com/ontology/webservices#"
ftcontent,"http://www.ft.com/ontology/content/"
vsw,"http://verticalsearchworks.com/ontology/"
tddo,"http://databugger.aksw.org/ns/core#"
rdai,"http://rdaregistry.info/Elements/i/"
bner,"http://datos.bne.es/resource/"
mml,"http://www.w3.org/1998/Math/MathML/"
uis,"http://uis.270a.info/dataset/"
wikim,"http://spi-fm.uca.es/spdef/models/genericTools/wikim/1.0#"
lsd,"http://linkedwidgets.org/statisticaldata/ontology/"
lexicon,"http://www.example.org/lexicon#"
ontopic,"http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl#"
agrd,"http://agrinepaldata.com/"
jolux,"http://data.legilux.public.lu/resource/ontology/jolux#"
vdpp,"http://data.lirmm.fr/ontologies/vdpp#"
dbptmpl,"http://dbpedia.org/resource/Template:"
frsad,"http://iflastandards.info/ns/fr/frsad/"
language,"http://id.loc.gov/vocabulary/iso639-1/"
gaf,"http://groundedannotationframework.org/"
lmm1,"http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl#"
geos,"http://www.telegraphis.net/ontology/geography/geography#"
acrt,"http://privatealpha.com/ontology/certification/1#"
olac,"http://www.language-archives.org/OLAC/1.0/"
lingvo,"http://www.lingvoj.org/ontology#"
pmd,"https://w3id.org/pmd/co/"
swpm,"http://spi-fm.uca.es/spdef/models/deployment/swpm/1.0#"
situ,"http://www.ontologydesignpatterns.org/cp/owl/situation.owl#"
rdact,"http://rdaregistry.info/termList/RDACarrierType/"
samfl,"http://def.seegrid.csiro.au/ontology/om/sam-lite#"
step,"http://purl.org/net/step#"
fire,"http://tldp.org/HOWTO/XML-RPC-HOWTO/xmlrpc-howto-java.html#"
scufl2,"http://ns.taverna.org.uk/2010/scufl2#"
ldvm,"http://linked.opendata.cz/ontology/ldvm/"
csp,"http://vocab.deri.ie/csp#"
aws,"http://purl.oclc.org/NET/ssnx/meteo/aws#"
hto,"http://project-haystack.org/hto#"
beth,"http://www.google.com/"
pwo,"http://purl.org/spar/pwo/"
edgar,"http://edgarwrap.ontologycentral.com/vocab/edgar#"
lexvo,"http://lexvo.org/ontology#"
ordf,"http://purl.org/NET/ordf/"
lmm2,"http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl#"
phdd,"http://rdf-vocabulary.ddialliance.org/phdd#"
vrank,"http://purl.org/voc/vrank#"
dot,"https://w3id.org/dot#"
pato,"http://purl.obolibrary.org/obo/"
genre,"http://sparql.cwrc.ca/ontologies/genre#"
merge,"http://jazz.net/ns/lqe/merge/"
bgdbr,"http://bg.dbpedia.org/resource/"
bioc,"http://deductions.github.io/biological-collections.owl.ttl#"
bnf,"http://www.w3.org/2000/10/swap/grammar/bnf#"
zr,"http://explain.z3950.org/dtd/2.0/"
pair,"http://virtual-assembly.org/ontologies/pair#"
csv,"http://vocab.sindice.net/csv/"
oplprod,"http://www.openlinksw.com/ontology/products#"
wfn,"http://webofcode.org/wfn/"
gnvc,"http://purl.org/gc/"
passim,"http://data.lirmm.fr/ontologies/passim#"
locwd,"http://purl.org/locwd/schema#"
graves,"http://rdf.muninn-project.org/ontologies/graves#"
ceterms,"http://purl.org/ctdl/terms/"
pcdt,"http://purl.org/procurement/public-contracts-datatypes#"
msm,"http://iserve.kmi.open.ac.uk/ns/msm#"
wn20,"http://www.w3.org/2006/03/wn/wn20/"
static,"http://vocab-ld.org/vocab/static-ld#"
location,"http://sw.deri.org/2006/07/location/loc#"
lido,"http://www.lido-schema.org/"
frbrer,"http://iflastandards.info/ns/fr/frbr/frbrer/"
rlnr,"http://rdflivenews.aksw.org/resource/"
roar,"https://w3id.org/roar#"
add,"https://mre.zcu.cz/ontology/stroke.owl#"
wf4ever,"http://purl.org/wf4ever/wf4ever#"
limoo,"http://purl.org/LiMo/0.1/"
opmo,"http://openprovenance.org/model/opmo#"
rut,"http://rdfunit.aksw.org/ns/core#"
topo,"http://data.ign.fr/def/topo#"
oecc,"http://www.oegov.org/core/owl/cc#"
bcngeo,"http://datos.bcn.cl/ontologies/bcn-geographics#"
gt,"https://vocab.eccenca.com/geniustex/"
imf,"http://imf.270a.info/dataset/"
qb4o,"http://purl.org/olap#"
babelnet,"http://babelnet.org/2.0/"
being,"http://purl.org/ontomedia/ext/common/being#"
reegle,"http://reegle.info/schema#"
contsem,"http://contsem.unizar.es/def/sector-publico/contratacion#"
cjr,"http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/callejero#"
jp1,"http://rdf.muninn-project.org/ontologies/jp1/"
dio,"https://w3id.org/dio#"
rdarole,"http://rdvocab.info/roles/"
ntag,"http://ns.inria.fr/nicetag/2010/09/09/voc#"
mammal,"http://lod.taxonconcept.org/ontology/p01/Mammalia/index.owl#"
year,"http://www.w3.org/year/"
ppn,"http://parliament.uk/ontologies/person-name/"
uc,"http://ucuenca.edu.ec/ontology#"
asgv,"http://aims.fao.org/aos/agrovoc/"
mocanal,"http://www.semanticweb.org/asow/ontologies/2013/9/untitled-ontology-36#"
pmc,"http://identifiers.org/pmc/"
geojson,"https://purl.org/geojson/vocab#"
cd,"http://citydata.wu.ac.at/ns#"
ns1,"http://www.w3.org/1999/xhtml/vocab#"
rdf123,"http://rdf123.umbc.edu/ns/"
locah,"http://data.archiveshub.ac.uk/def/"
crime,"http://purl.org/vocab/reloc/"
gci,"http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl#"
pproc,"http://contsem.unizar.es/def/sector-publico/pproc#"
olca,"http://www.lingvoj.org/olca#"
roterms,"http://purl.org/wf4ever/roterms#"
llm,"http://lodlaundromat.org/metrics/ontology/"
text,"http://jena.apache.org/text#"
amalgame,"http://purl.org/vocabularies/amalgame#"
puml,"http://plantuml.com/ontology#"
limo,"http://www.purl.org/limo-ontology/limo#"
pkgsrc,"http://pkgsrc.co/schema#"
regorg,"http://www.w3.org/ns/regorg#"
hlygt,"http://www.holygoat.co.uk/owl/redwood/0.1/tags/"
nxs,"http://www.neclimateus.org/"
trig,"http://www.w3.org/2004/03/trix/rdfg-1/"
ldt,"https://www.w3.org/ns/ldt#"
munc,"http://ns.inria.fr/munc#"
ogbd,"http://www.ogbd.fr/2012/ontologie#"
odbc,"http://www.openlinksw.com/ontology/odbc#"
sylld,"http://www.semanticweb.org/syllabus/data/"
owlse,"http://www.daml.org/services/owl-s/1.2/generic/Expression.owl#"
cdao,"http://purl.obolibrary.org/obo/"
mds,"http://doc.metalex.eu/id/"
sx,"http://shex.io/ns/shex#"
dcx,"http://dublincore.org/dcx/"
voc,"http://voc.odw.tw/"
bis,"http://bis.270a.info/dataset/"
laabs,"http://dbpedia.org/resource/"
rdagrp,"http://rdaregistry.info/termList/groovePitch/"
plg,"http://parliament.uk/ontologies/legislation/"
soch,"http://kulturarvsdata.se/ksamsok#"
osadm,"http://data.ordnancesurvey.co.uk/ontology/admingeo/"
form,"http://deductions-software.com/ontologies/forms.owl.ttl#"
condition,"http://www.kinjal.com/condition:"
proms,"http://promsns.org/def/proms#"
sru,"http://www.loc.gov/zing/srw/"
dbrc,"http://dbpedia.org/resource/Category:"
rdaftn,"http://rdaregistry.info/termList/TacNotation/"
glview,"http://schema.geolink.org/dev/view/"
rvz,"http://rdfvizler.dyreriket.xyz/vocabulary/core#"
keys,"http://purl.org/NET/c4dm/keys.owl#"
ecgl,"http://schema.geolink.org/"
moo,"http://www.movieontology.org/2009/11/09/movieontology.owl#"
incident,"http://vocab.resc.info/incident#"
jjd,"http://www.joshuajeeson.com/"
mmt,"http://linkedmultimedia.org/sparql-mm/functions/temporal#"
teamwork,"http://topbraid.org/teamwork#"
led,"http://led.kmi.open.ac.uk/term/"
odv,"http://reference.data.gov.uk/def/organogram/"
aktivesa,"http://sa.aktivespace.org/ontologies/aktivesa#"
lcdr,"http://ns.lucid-project.org/revision/"
essglobal,"http://purl.org/essglobal/vocab/v1.0/"
omnfed,"http://open-multinet.info/ontology/omn-federation#"
obeu,"http://data.openbudgets.eu/ontology/"
rdafs,"http://rdaregistry.info/termList/fontSize/"
gnm,"http://www.geonames.org/ontology/mappings/"
rdafrbr,"http://rdvocab.info/uri/schema/FRBRentitiesRDA/"
ou,"http://opendata.unex.es/def/ontouniversidad#"
muldicat,"http://iflastandards.info/ns/muldicat#"
infection,"http://www.agfa.com/w3c/2009/infectiousDisorder#"
escom,"http://vocab.linkeddata.es/datosabiertos/def/comercio/tejidoComercial#"
studiop,"http://purl.org/resource/pilatesstudio/"
demlab,"http://www.demcare.eu/ontologies/demlab.owl#"
si,"https://si-digital-framework.org/SI#"
eurlex,"http://eur-lex.publicdata.eu/ontology/"
crowd,"http://purl.org/crowd/"
basic,"http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#"
ecglview,"http://schema.geolink.org/view/"
fnabox,"http://www.ontologydesignpatterns.org/ont/framenet/abox/"
ali,"http://www.niso.org/schemas/ali/1.0/"
defns,"http://www.openarchives.org/OAI/2.0/"
oplecrm,"http://www.openlinksw.com/ontology/ecrm#"
lofv,"http://purl.org/legal_form/vocab#"
cpack,"http://cliopatria.swi-prolog.org/schema/cpack#"
rdaco,"http://rdaregistry.info/termList/RDAContentType/"
sto,"https://w3id.org/i40/sto#"
oprovo,"http://openprovenance.org/ontology#"
rdatr,"http://rdaregistry.info/termList/typeRec/"
ssno,"http://www.w3.org/ns/ssn/"
ruian,"https://data.cssz.cz/ontology/ruian/"
airs,"https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#"
fred,"http://www.ontologydesignpatterns.org/ont/fred/domain.owl#"
maso,"http://securitytoolbox.appspot.com/MASO#"
cmdi,"http://www.clarin.eu/cmd/"
dsn,"http://purl.org/dsnotify/vocab/eventset/"
ontosec,"http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl#"
ha,"http://sensormeasurement.appspot.com/ont/home/homeActivity#"
fr,"https://w3id.org/fr/def/core#"
iati,"http://purl.org/collections/iati/"
tsn,"http://purl.org/net/tsn#"
tb,"https://w3id.org/timebank#"
jpost,"http://rdf.jpostdb.org/ontology/jpost.owl#"
r3d,"http://www.re3data.org/schema/3-0#"
rdacc,"http://rdaregistry.info/termList/RDAColourContent/"
r4ta,"http://ns.inria.fr/ratio4ta/v1#"
eem,"http://purl.org/eem#"
mdi,"http://w3id.org/multidimensional-interface/ontology#"
logies,"https://data.vlaanderen.be/ns/logies#"
rdarr,"http://rdaregistry.info/termList/RDAReductionRatio/"
bb,"http://www.snik.eu/ontology/bb/"
clirio,"http://clirio.kaerle.com/clirio.owl#"
gq,"http://genomequest.com/"
kml,"http://www.opengis.net/kml/2.2#"
fuseki,"http://jena.apache.org/fuseki#"
agrovoc,"http://aims.fao.org/aos/agrovoc/"
erce,"http://xxefe.de/"
esadm,"http://vocab.linkeddata.es/datosabiertos/def/sector-publico/territorio#"
bpo,"https://w3id.org/bpo#"
espresup,"http://vocab.linkeddata.es/datosabiertos/def/hacienda/presupuestos#"
rdafmn,"http://rdaregistry.info/termList/MusNotation/"
eccrev,"https://vocab.eccenca.com/revision/"
kegg,"http://bio2rdf.org/ns/kegg#"
rdarm,"http://registry.info/termList/recMedium/"
output,"http://volt-name.space/vocab/output#"
caplibacl,"http://schemas.capita-libraries.co.uk/2015/acl/schema#"
uta,"http://uptheasset.org/ontology#"
eccauth,"https://vocab.eccenca.com/auth/"
crsw,"http://courseware.rkbexplorer.com/ontologies/courseware#"
diag,"http://www.loc.gov/zing/srw/diagnostic/"
oils,"http://lemon-model.net/oils#"
bsym,"http://bsym.bloomberg.com/sym/"
gdc,"https://portal.gdc.cancer.gov/cases/"
oplcb,"http://www.openlinksw.com/schemas/crunchbase#"
td5,"http://td5.org/#"
omg,"https://w3id.org/omg#"
bevon,"http://rdfs.co/bevon/"
imo,"http://imgpedia.dcc.uchile.cl/ontology#"
organ,"http://www.univalle.edu.co/ontologies/Organ#"
nlon,"http://lod.nl.go.kr/ontology/"
owsom,"https://onlinesocialmeasures.wordpress.com/"
spdx,"http://spdx.org/rdf/terms#"
mmoon,"http://mmoon.org/mmoon/"
sdt,"http://statisticaldata.linkedwidgets.org/terms/"
rdaterm,"http://rdaregistry.info/termList/RDATerms/"
place,"http://purl.org/ontology/places/"
geod,"http://vocab.lenka.no/geo-deling#"
tui,"http://data.ifs.tuwien.ac.at/study/resource/"
oplweb,"http://www.openlinksw.com/schemas/oplweb#"
umls,"http://bioportal.bioontology.org/ontologies/umls/"
aprov,"http://purl.org/a-proc#"
afr,"http://purl.allotrope.org/ontologies/result#"
rdag2,"http://rdvocab.info/ElementsGr2/"
webac,"http://fedora.info/definitions/v4/webac#"
oplmkt,"http://www.openlinksw.com/ontology/market#"
ldl,"https://w3id.org/ldpdl/ns#"
ln,"https://w3id.org/ln#"
reg,"http://purl.org/linked-data/registry#"
sirene,"https://sireneld.io/vocab/sirene#"
ago,"http://awesemantic-geo.link/ontology/"
door,"http://kannel.open.ac.uk/ontology#"
iana,"http://www.iana.org/assignments/relation/"
ttp,"http://eample.com/test#"
hr,"http://iserve.kmi.open.ac.uk/ns/hrests#"
lslife,"http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl#"
hva,"http://www.ebusiness-unibw.org/ontologies/hva/ontology#"
orcid,"http://orcid.org/"
task,"http://deductions.github.io/task-management.owl.ttl#"
owl2xml,"http://www.w3.org/2006/12/owl2-xml#"
vstoi,"http://hadatac.org/ont/vstoi#"
lmx,"http://www.w3.org/XML/1998/namespace/"
mls,"http://www.w3.org/ns/mls#"
csdbp,"http://cs.dbpedia.org/"
faostat,"http://reference.eionet.europa.eu/faostat/schema/"
fntbox,"http://www.ontologydesignpatterns.org/ont/framenet/tbox/"
datex,"http://vocab.datex.org/terms#"
lawd,"http://lawd.info/ontology/"
vir,"http://w3id.org/vir#"
radar,"http://www.radar-projekt.org/display/"
navm,"https://w3id.org/navigation_menu#"
rdasco,"http://rdaregistry.info/termList/soundCont/"
lyon,"http://dbpedia.org/resource/Lyon/"
sgg,"http://www.springernature.com/scigraph/graphs/"
efrbroo,"http://erlangen-crm.org/efrbroo/"
cocoon,"https://w3id.org/cocoon/v1.0#"
dicom,"http://purl.org/healthcarevocab/v1#"
esapar,"http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/aparcamiento#"
conll,"http://ufal.mff.cuni.cz/conll2009-st/task-description.html#"
meeting,"http://www.w3.org/2002/07/meeting#"
rofch,"http://rdaregistry.info/termList/rofch/"
ubiq,"http://server.ubiqore.com/ubiq/core#"
roadmap,"http://mappings.roadmap.org/"
volt,"http://volt-name.space/ontology/"
onisep,"http://rdf.onisep.fr/resource/"
newsevents,"http://www.aifb.uni-karlsruhe.de/WBS/uhe/ontologies#"
tix,"http://toptix.com/2010/esro/"
scco,"http://rdf.ebi.ac.uk/terms/surechembl#"
literal,"http://www.essepuntato.it/2010/06/literalreification/"
gts,"http://resource.geosciml.org/ontology/timescale/gts#"
cwl,"https://w3id.org/cwl/cwl#"
figigii,"http://www.omg.org/spec/FIGI/GlobalInstrumentIdentifiers/"
rdag1,"http://rdvocab.info/Elements/"
fdbp,"http://fr.dbpedia.org/property/"
customer,"http://www.valuelabs.com/"
rofer,"http://rdaregistry.info/termList/rofer/"
shui,"https://vocab.eccenca.com/shui/"
apf,"http://jena.apache.org/ARQ/property#"
uom,"http://www.opengis.net/def/uom/OGC/1.0/"
rofem,"http://rdaregistry.info/termList/rofem/"
vidont,"http://vidont.org/"
mandaat,"http://data.vlaanderen.be/ns/mandaat#"
rdapmt,"http://rdaregistry.info/termList/prodTactile/"
eepsa,"https://w3id.org/eepsa#"
cue,"http://www.clarin.eu/cmdi/cues/display/1.0#"
pep,"https://w3id.org/pep/"
ja,"http://jena.hpl.hp.com/2005/11/Assembler#"
audit,"http://fedora.info/definitions/v4/audit#"
ruto,"http://rdfunit.aksw.org/ns/core#"
gg,"http://www.gemeentegeschiedenis.nl/gg-schema#"
county,"http://myexample.org/county#"
pid,"http://permid.org/ontology/organization/"
yd,"https://yodata.io/"
afm,"http://purl.allotrope.org/ontologies/material/"
doacc,"http://purl.org/net/bel-epa/doacc#"
cpov,"http://data.europa.eu/m8g/"
oxi,"http://omerxi.com/ontologies/core.owl.ttl#"
sakthi,"http://infotech.nitk.ac.in/research-scholars/sakthi-murugan-r/"
dpn,"http://purl.org/dpn#"
datacite,"http://purl.org/spar/datacite/"
sfd,"http://semantic-forms.cc:9112/ldp/"
traffic,"http://www.sensormeasurement.appspot.com/ont/transport/traffic#"
videogame,"http://purl.org/net/vgo#"
physo,"http://merlin.phys.uni.lodz.pl/onto/physo/physo.owl#"
lswpm,"http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl#"
amt,"http://academic-meta-tool.xyz/vocab#"
vcard2006,"http://www.w3.org/2006/vcard/ns#"
vocnet,"http://schema.vocnet.org/"
scho,"http://www.scholarlydata.org/ontology/conference-ontology.owl#"
whisky,"http://vocab.org/whisky/terms/"
cim,"http://iec.ch/TC57/2013/CIM-schema-cim16#"
memento,"http://mementoweb.org/ns#"
url,"http://schema.org/"
vogd,"http://ogd.ifs.tuwien.ac.at/vienna/geo/"
open311,"http://ontology.eil.utoronto.ca/open311#"
oplres,"http://www.openlinksw.com/ontology/restrictions#"
jerm,"http://jermontology.org/ontology/JERMOntology#"
rls,"https://w3id.org/lovcube/ns/relovstats#"
hello,"https://www.youtube.com/user/SuperTellAFriend/featured/"
spcm,"http://spi-fm.uca.es/spdef/models/deployment/spcm/1.0#"
yaco,"https://www.irit.fr/recherches/MELODI/ontologies/cinema#"
pdf,"http://ns.adobe.com/pdf/1.3/"
mexv,"http://mex.aksw.org/mex-algo#"
eccdi,"https://vocab.eccenca.com/di/"
planet,"http://dbpedia.org/"
numbers,"http://km.aifb.kit.edu/projects/numbers/"
rpath,"https://w3id.org/lodsight/rdf-path#"
pp,"http://peoplesplaces.de/ontology#"
frgeo,"http://rdf.insee.fr/geo/"
rdaemm,"http://rdaregistry.info/termList/emulsionMicro/"
opa,"https://w3id.org/laas-iot/adream#"
owms,"http://standaarden.overheid.nl/owms/terms/"
ccp,"http://cookingbigdata.com/linkeddata/ccpricing#"
oliasystem,"http://purl.org/olia/system.owl#"
bbccms,"http://www.bbc.co.uk/ontologies/cms/"
composer,"http://dbpedia.org/ontology/composer/"
bbccore,"http://www.bbc.co.uk/ontologies/coreconcepts/"
ofrd,"http://purl.org/opdm/refrigerator#"
cbim,"http://www.coinsweb.nl/cbim-2.0.rdf#"
sdmxcode,"http://purl.org/linked-data/sdmx/2009/code#"
ioto,"http://www.irit.fr/recherches/MELODI/ontologies/IoT-O#"
dsv,"https://w3id.org/dsv#"
lswmo,"http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl#"
escjr,"http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/callejero#"
bdo,"http://purl.bdrc.io/ontology/core/"
esair,"http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#"
itm,"http://spi-fm.uca.es/spdef/models/genericTools/itm/1.0#"
lheo,"http://www.conjecto.com/ontology/2015/lheo#"
cwork,"http://www.bbc.co.uk/ontologies/creativework/"
az,"https://w3id.org/people/az/"
svcs,"http://rdfs.org/sioc/services#"
nobel,"http://data.nobelprize.org/terms/"
ndnp,"http://chroniclingamerica.loc.gov/terms#"
voidext,"http://rdfs.org/ns/void-ext#"
its,"http://www.w3.org/2005/11/its/rdf#"
ver,"https://w3id.org/version/ontology#"
eol,"http://purl.org/biodiversity/eol/"
lmf,"http://www.lexinfo.net/lmf#"
tx,"http://swtmp.gitlab.io/vocabulary/templates.owl#"
hdo,"http://www.samos.gr/ontologies/helpdeskOnto.owl#"
rdag3,"http://rdvocab.info/ElementsGr3/"
lgdm,"http://linkedgeodata.org/meta/"
wimpo,"http://rdfex.org/withImports?uri="
glycan,"http://purl.jp/bio/12/glyco/glycan#"
cwlprov,"https://w3id.org/cwl/prov#"
dicera,"http://semweb.mmlab.be/ns/dicera#"
mbgd,"http://mbgd.genome.ad.jp/owl/mbgd.owl#"
assoc,"https://w3id.org/associations/vocab#"
markus,"http://www.markus.com/"
conference,"https://w3id.org/scholarlydata/ontology/conference-ontology.owl#"
odf,"http://docs.oasis-open.org/ns/office/1.2/meta/odf#"
rdabf,"http://rdaregistry.info/termList/bookFormat/"
tree,"https://w3id.org/tree#"
religion,"http://rdf.muninn-project.org/ontologies/religion#"
dbug,"http://ontologi.es/doap-bugs#"
llont,"http://www.linklion.org/ontology#"
drk,"http://drakon.su/"
esservicio,"http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#"
ttla,"https://w3id.org/ttla/"
rdfdata,"http://rdf.data-vocabulary.org/rdf.xml#"
id,"http://identifiers.org/"
rdaz,"http://rdaregistry.info/Elements/z/"
minim,"http://purl.org/minim/minim#"
wde,"http://www.wikidata.org/entity/"
chear,"http://hadatac.org/ont/chear#"
seeds,"http://deductions.github.io/seeds.owl.ttl#"
lovc,"https://w3id.org/lovcube/ns/lovcube#"
mem,"http://mementoweb.org/ns#"
pmo,"http://premon.fbk.eu/ontology/core#"
trao,"http://linkeddata.finki.ukim.mk/lod/ontology/tao#"
one,"https://bioportal.bioontology.org/ontologies/ONE/"
ecore,"http://www.eclipse.org/emf/2002/Ecore#"
gbol,"http://gbol.life/0.1#"
dk,"http://www.data-knowledge.org/dk/schema/rdf/latest/"
gns,"http://sws.geonames.org/"
dataid,"http://dataid.dbpedia.org/ns/core#"
sfn,"http://semweb.datasciencelab.be/ns/sfn#"
brk,"http://brk.basisregistraties.overheid.nl/def/brk#"
lemonuby,"http://lemon-model.net/lexica/uby/"
da,"https://www.wowman.org/index.php?id=1&type=get#"
ims,"http://www.imsglobal.org/xsd/imsmd_v1p2/"
gont,"https://gont.ch/"
bibrm,"http://vocab.ub.uni-leipzig.de/bibrm/"
vplan,"http://www.ifs.tuwien.ac.at/~miksa/ontologies/VPlan.owl#"
rdalay,"http://rdaregistry.info/termList/layout/"
semiot,"http://w3id.org/semiot/ontologies/semiot#"
bob,"http://good.dad/meaning/bob#"
tgm,"http://id.loc.gov/vocabulary/graphicMaterials/"
lfov,"https://w3id.org/legal_form#"
rofrr,"http://rdaregistry.info/termList/rofrr/"
duv,"http://www.w3.org/ns/duv#"
qms,"http://data.europa.eu/esco/qms#"
besluit,"http://data.vlaanderen.be/ns/besluit#"
eame,"http://www.semanticweb.org/ontologia_EA#"
cpi,"http://www.ebusiness-unibw.org/ontologies/cpi/ns#"
ucum,"http://purl.oclc.org/NET/muo/ucum/"
odapps,"http://semweb.mmlab.be/ns/odapps#"
emergelm,"http://purl.org/emergel/modules#"
uby,"http://purl.org/olia/ubyCat.owl#"
provinsi,"http://provinsi.com/"
vehma,"http://deductions.github.io/vehicule-management.owl.ttl#"
ensembl,"http://rdf.ebi.ac.uk/resource/ensembl/"
biml,"http://schemas.varigence.com/biml.xsd#"
bdc,"http://dbpedia.org/resource/Category:"
lmu,"https://w3id.org/laas-iot/lmu#"
adf,"http://purl.allotrope.org/ontologies/datapackage#"
qkdv,"http://qudt.org/vocab/dimensionvector/"
fhir,"http://hl7.org/fhir/"
ethc,"http://ethoinformatics.org/ethocore/"
fun,"http://w3id.org/sparql-generate/fn/"
nkos,"http://w3id.org/nkos#"
mydb,"http://mydb.org/"
mexalgo,"http://mex.aksw.org/mex-algo#"
tosh,"http://topbraid.org/tosh#"
lg,"https://purl.org/lg/"
huto,"http://ns.inria.fr/huto/"
naval,"http://rdf.muninn-project.org/ontologies/naval#"
fp3,"http://vocab.fusepool.info/fp3#"
rdafnv,"http://rdaregistry.info/termList/noteForm/"
rdaar,"http://rdaregistry.info/termList/AspectRatio/"
vacseen1,"http://www.semanticweb.org/parthasb/ontologies/2014/6/vacseen1/"
opllog,"http://www.openlinksw.com/ontology/logging#"
meshv,"http://id.nlm.nih.gov/mesh/vocab#"
amsl,"http://vocab.ub.uni-leipzig.de/amsl/"
piero,"http://reactionontology.org/piero/"
sdshare,"http://www.sdshare.org/2012/extension/"
yso,"http://www.yso.fi/onto/yso/"
ctrl,"https://w3id.org/ibp/CTRLont#"
mexcore,"http://mex.aksw.org/mex-core#"
timex,"http://data.wu.ac.at/ns/timex#"
wdtn,"http://www.wikidata.org/prop/direct-normalized/"
ecoll,"http://purl.org/ceu/eco/1.0#"
tarql,"http://tarql.github.io/tarql#"
rofin,"http://rdaregistry.info/termList/rofin/"
rdapm,"http://rdaregistry.info/termList/RDAproductionMethod/"
alice,"http://example.org/"
gobierno,"http://www.gobierno.es/gobierno/"
alethio,"http://aleth.io/"
iter,"http://w3id.org/sparql-generate/iter/"
persee,"http://data.persee.fr/ontology/persee_ontology/"
bds,"http://www.bigdata.com/rdf/search#"
nih,"http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#"
frappe,"http://streamreasoning.org/ontologies/frappe#"
rofid,"http://rdaregistry.info/termList/rofid/"
bblfish,"http://bblfish.net/people/henry/card#"
koly,"http://www.ensias.ma/"
imind,"http://schema.intellimind.ns/symbology#"
bkb,"https://budayakb.cs.ui.ac.id/ns#"
mwapi,"https://www.mediawiki.org/ontology#API/"
system,"http://www.univalle.edu.co/ontologies/System#"
dto,"http://www.datatourisme.fr/ontology/core/1.0#"
um,"http://intelleo.eu/ontologies/user-model/ns/"
h2o,"http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#"
rdacarx,"http://rdaregistry.info/termList/RDACarrierEU/"
alg,"http://drakon.su/ADF#"
uneskos,"http://purl.org/voc/uneskos#"
geovoid,"http://purl.org/geovocamp/ontology/geovoid/"
mus,"http://data.doremus.org/ontology#"
travel,"http://www.co-ode.org/roberts/travel.owl#"
hasneto,"http://hadatac.org/ont/hasneto#"
ipsv,"http://id.esd.org.uk/list/"
lgt,"http://linkedgadget.com/wiki/Property:"
sdmxm,"http://purl.org/linked-data/sdmx/2009/measure#"
cog,"http://purl.org/ontology/cco/core#"
veo,"http://linkeddata.finki.ukim.mk/lod/ontology/veo#"
gvoith,"http://assemblee-virtuelle.github.io/grands-voisins-v2/thesaurus.ttl#"
nature,"http://deductions.github.io/nature_observation.owl.ttl#"
otl,"https://w3id.org/opentrafficlights#"
pmhb,"http://pmhb.org/"
rofsm,"http://rdaregistry.info/termList/rofsm/"
vocals,"http://w3id.org/rsp/vocals#"
summa,"http://purl.org/voc/summa/"
brt,"http://brt.basisregistraties.overheid.nl/def/top10nl#"
edr,"https://w3id.org/laas-iot/edr#"
pfeepsa,"https://w3id.org/pfeepsa#"
oplli,"http://www.openlinksw.com/schemas/linkedin#"
rgml,"http://purl.org/puninj/2001/05/rgml-schema#"
devuan,"https://devuan.net.br/"
mobivoc,"http://schema.mobivoc.org/"
rvl,"http://purl.org/rvl/"
l2sp,"http://www.linked2safety-project.eu/properties/"
dead,"http://utpl.edu.ec/sbc/data/"
juso,"http://rdfs.co/juso/"
pcit,"http://public-contracts.nexacenter.org/id/propertiesRole/"
bld,"http://biglinkeddata.com/"
dsw,"http://purl.org/dsw/"
physics,"http://www.astro.umd.edu/~eshaya/astro-onto/owl/physics.owl#"
oplacl,"http://www.openlinksw.com/ontology/acl#"
tadirah,"http://tadirah.dariah.eu/vocab/"
rdaft,"http://rdaregistry.info/termList/fileType/"
lsq,"http://lsq.aksw.org/vocab#"
rdaspc,"http://rdaregistry.info/termList/specPlayback/"
nno,"https://w3id.org/nno/ontology#"
ido,"http://purl.obolibrary.org/obo/ido.owl#"
pmonb,"http://premon.fbk.eu/ontology/nb#"
mmm,"http://www.mico-project.eu/ns/mmm/2.0/schema#"
fnom,"https://w3id.org/function/vocabulary/mapping#"
fluidops,"http://www.fluidops.com/"
rofit,"http://rdaregistry.info/termList/rofit/"
esproc,"http://vocab.linkeddata.es/datosabiertos/def/sector-publico/procedimientos#"
s4syst,"https://saref.etsi.org/saref4syst/"
itcat,"http://th-brandenburg.de/ns/itcat#"
geoloc,"http://deductions.github.io/geoloc.owl.ttl#"
oup,"http://purl.org/ontology-use-patterns#"
bdr,"http://purl.bdrc.io/resource/"
voidex,"http://www.swi-prolog.org/rdf/library/"
legal,"http://www.w3.org/ns/legal#"
ca,"http://complyadvantage.com/"
dwciri,"http://rs.tdwg.org/dwc/iri/"
ppr,"http://purl.org/datanode/ppr/ns/"
vam,"http://www.metmuseum.org/"
srx,"http://www.w3.org/2005/sparql-results#"
dcosample,"http://info.deepcarbon.net/sample/schema#"
swa,"http://topbraid.org/swa#"
rdabs,"http://rdaregistry.info/termList/broadcastStand/"
b3kat,"http://lod.b3kat.de/title/"
sorg,"http://schema.org/"
rdfp,"https://w3id.org/rdfp/"
rofrt,"http://rdaregistry.info/termList/rofrt/"
osd,"http://a9.com/-/spec/opensearch/1.1/"
cubeont,"http://ontology.cube.global/"
clapit,"http://dati.gov.it/onto/clapit/"
iiif,"http://iiif.io/api/image/2#"
pcdm,"http://pcdm.org/models#"
sgfn,"http://w3id.org/sparql-generate/fn/"
number,"http://km.aifb.kit.edu/projects/numbers/number#"
smxm,"http://smxm.ga/"
aml,"https://w3id.org/i40/aml#"
ilap,"http://data.posccaesar.org/ilap/"
maeco,"http://edg.topbraid.solutions/maeco/"
irsteaont,"http://ontology.irstea.fr/weather/ontology#"
pm,"http://premon.fbk.eu/resource/"
edg,"http://edg.topbraid.solutions/model/"
neotec,"http://neotec.rc.unesp.br/resource/Neotectonics/"
ksam,"http://kulturarvsdata.se/ksamsok#"
roc,"https://w3id.org/ro/curate#"
d3s,"http://vocbench.solidaridad.cloud/taxonomies#"
rofhf,"http://rdaregistry.info/termList/rofhf/"
it,"http://www.influencetracker.com/ontology#"
oplstocks,"http://www.openlinksw.com/ontology/stocks#"
ns2,"http://ogp.me/ns#video:"
semsur,"http://purl.org/SemSur/"
globalcube,"http://kalmar32.fzi.de/triples/global-cube.ttl#"
docker,"http://www.w3.org/ns/bde/docker/"
bsh,"https://brickschema.org/schema/1.1.0/BrickShape#"
pmofn,"http://premon.fbk.eu/ontology/fn#"
ldn,"https://www.w3.org/TR/ldn/#"
input,"http://volt-name.space/vocab/input#"
dbfo,"http://dbpedia.org/facts/ontology#"
pand,"http://bag.basisregistraties.overheid.nl/bag/id/pand/"
ul,"http://underlay.mit.edu/ns/"
or,"http://openresearch.org/vocab/"
ondc,"http://www.semanticweb.org/ontologies/2012/1/Ontology1329913965202.owl#"
oplwebsrv,"http://www.openlinksw.com/ontology/webservices#"
spvqa,"https://bmake.th-brandenburg.de/spv#"
oplbenefit,"http://www.openlinksw.com/ontology/benefits#"
olac11,"http://www.language-archives.org/OLAC/1.1/"
undata,"http://citydata.wu.ac.at/Linked-UNData/data/"
metadata,"http://purl.oreilly.com/ns/meta/"
uri4uri,"http://uri4uri.net/vocab#"
s4ee,"https://w3id.org/saref4ee#"
foaffff,"http://gogl.com/"
elod,"http://linkedeconomy.org/ontology#"
vsearch,"http://vocab.sti2.at/vsearch#"
rofrm,"http://rdaregistry.info/termList/rofrm/"
refexo,"http://purl.jp/bio/01/refexo#"
beer,"http://beer.com/"
dbms,"http://www.openlinksw.com/ontology/dbms-app-ontology#"
rm,"http://jazz.net/ns/rm#"
ncicp,"http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#"
ispra,"http://dati.isprambiente.it/ontology/core#"
nosql,"http://purl.org/db/nosql#"
atlasterms,"http://rdf.ebi.ac.uk/terms/atlas/"
ctxdesc,"http://www.demcare.eu/ontologies/contextdescriptor.owl#"
rdacpc,"http://rdaregistry.info/termList/configPlayback/"
rdax,"http://rdaregistry.info/Elements/x/"
geor,"http://www.opengis.net/def/rule/geosparql/"
neotecbib,"http://neotec.rc.unesp.br/resource/NeotectonicsBibliography/"
connard,"https://mail.google.com/mail/u/1/#"
isbdu,"http://iflastandards.info/ns/isbd/unc/elements/"
seo,"http://sda.tech/SEOontology/SEO/"
ldq,"http://www.linkeddata.es/ontology/ldq#"
manto,"http://com.vortic3.MANTO/"
remetca,"http://www.purl.org/net/remetca#"
modsci,"https://w3id.org/skgo/modsci#"
dcap,"http://purl.org/ws-mmi-dc/terms/"
rami,"http://iais.fraunhofer.de/vocabs/rami#"
wab,"http://wab.uib.no/cost-a32_philospace/wittgenstein.owl#"
literature,"http://purl.org/net/cnyt-literature#"
swrc2,"https://www.cs.vu.nl/~mcaklein/onto/swrc_ext/2005/05#"
pop,"http://wiki.dbpedia.org/"
oop,"http://w3id.org/oop#"
isidore,"http://www.rechercheisidore.fr/class/"
soma,"http://sweetontology.net/matr/"
eccpubsub,"https://vocab.eccenca.com/pubsub/"
occ,"http://w3id.org/occ#"
cff,"http://purl.oclc.org/NET/ssnx/cf/cf-feature#"
qbe,"http://citydata.wu.ac.at/qb-equations#"
lgdt,"http://linkedgeodata.org/triplify/"
edac,"http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#"
cska,"http://pfclitex.com/"
tavprov,"http://ns.taverna.org.uk/2012/tavernaprov/"
swcomp,"https://github.com/ali1k/ld-reactor/blob/master/vocabulary/index.ttl#"
master1,"http://idl.u-grenoble3.fr/"
ldqm,"http://linkeddata.es/resource/ldqm/"
dby,"http://dbpedia.org/class/yago/"
gdpr,"https://vocab.eccenca.com/gdpr/"
bioentity,"http://bioentity.io/vocab/"
datacron,"http://www.datacron-project.eu/datAcron#"
rdapf,"http://rdaregistry.info/termList/presFormat/"
ermrk,"http://www.essepuntato.it/2008/12/earmark#"
irstea,"http://ontology.irstea.fr/"
wsdl,"http://www.w3.org/ns/wsdl-rdf#"
phy,"https://w3id.org/skgo/phy#"
scholl,"http://menemeneml.com/school#"
sdmxc,"http://purl.org/linked-data/sdmx/2009/concept#"
km4c,"http://www.disit.org/km4city/schema#"
rdacdt,"http://rdaregistry.info/termList/RDACartoDT/"
sgiter,"http://w3id.org/sparql-generate/iter/"
ods,"http://lod.xdams.org/ontologies/ods/"
changeset,"http://purl.org/vocab/changeset/schema#"
spv,"http://completeness.inf.unibz.it/sp-vocab#"
dcodt,"http://info.deepcarbon.net/datatype/schema#"
asawoo,"http://liris.cnrs.fr/asawoo/"
dm2e,"http://onto.dm2e.eu/schemas/dm2e/"
pmovn,"http://premon.fbk.eu/ontology/vn#"
sdterms,"http://statisticaldata.linkedwidgets.org/terms/"
rdare,"http://rdaregistry.info/termList/RDARegionalEncoding/"
provoc,"http://ns.inria.fr/provoc/"
rdaill,"http://rdaregistry.info/termList/IllusContent/"
apb,"http://www.analysispartners.org/businessmodel/"
nas,"https://data.nasa.gov/ontologies/atmonto/NAS#"
iso37120,"http://ontology.eil.utoronto.ca/ISO37120.owl#"
aksw,"http://aksw.org/"
xslopm,"http://purl.org/net/opmv/types/xslt#"
edgarcik,"http://edgarwrap.ontologycentral.com/cik/"
eustd,"http://eurostat.linked-statistics.org/data#"
ifcowl,"http://www.buildingsmart-tech.org/ifcOWL/IFC4_ADD2#"
goaf,"http://goaf.fr/goaf#"
noise,"http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/contaminacion-acustica#"
w3cgeo,"http://www.w3.org/2003/01/geo/wgs84_pos#"
powla,"http://purl.org/powla/powla.owl#"
loted,"http://loted.eu/ontology#"
geo7,"https://www.geo7.ch/"
rico,"https://www.ica.org/standards/RiC/ontology#"
wail,"http://www.eyrie.org/~zednenem/2002/wail/"
halyard,"http://merck.github.io/Halyard/ns#"
aseonto,"http://requirement.ase.ru/requirements_ontology#"
ncbigene,"http://identifiers.org/ncbigene/"
eproc,"http://10.0.3.120/download/eproc_FORN_v02.owl#"
pbody,"http://reference.data.gov.uk/def/public-body/"
dnbt,"http://d-nb.info/standards/elementset/dnb#"
tissue,"http://www.univalle.edu.co/ontologies/Tissue#"
esagen,"http://vocab.ciudadesabiertas.es/def/sector-publico/agenda-municipal#"
idot,"http://identifiers.org/idot/"
hosp,"http://health.data.gov/def/hospital/"
wikimedia,"http://upload.wikimedia.org/wikipedia/commons/f/f6/"
emergel,"http://purl.org/emergel/core#"
ii,"http://sparql.cwrc.ca/ontologies/ii#"
rofsf,"http://rdaregistry.info/termList/rofsf/"
wn30,"http://purl.org/vocabularies/princeton/wn30/"
maet,"http://edg.topbraid.solutions/taxonomy/macroeconomics/"
ontop,"https://w3id.org/ontop/"
llalg,"http://www.linklion.org/algorithm/"
wdv,"http://www.wikidata.org/value/"
bci,"https://w3id.org/BCI-ontology#"
vss,"http://automotive.eurecom.fr/vsso#"
aozora,"http://purl.org/net/aozora/"
cbb,"https://data.cbb.omgeving.vlaanderen.be/ns/cbb#"
crmeh,"http://purl.org/crmeh#"
rsctx,"http://softeng.polito.it/rsctx#"
imas,"https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#"
efd,"http://data.foodanddrinkeurope.eu/ontology#"
dcodata,"http://info.deepcarbon.net/data/schema#"
dm,"http://datamusee.givingsense.eu/onto/"
kmgeo,"http://km.aifb.kit.edu/services/geo/ontology#"
rfd,"http://com.intrinsec//ontology#"
unspsc,"http://ontoview.org/schema/unspsc/1#"
dsfv,"http://sws.ifi.uio.no/vocab/dsf/henriwi/dsf#"
dpla,"http://dp.la/info/developers/map/"
ocds,"http://purl.org/onto-ocds/ocds#"
sohukd,"http://sweetontology.net/humanKnowledgeDomain/"
sciprov,"http://sweetontology.net/reprSciProvenance/"
fnml,"http://semweb.mmlab.be/ns/fnml#"
qk,"http://qudt.org/vocab/quantitykind/"
ogdl4m,"https://github.com/martynui/OGDL4M/"
dmp,"http://www.sysresearch.org/rda-common-dmp#"
rofim,"http://rdaregistry.info/termList/rofim/"
rdagen,"http://rdaregistry.info/termList/RDAGeneration/"
iotlite,"http://purl.oclc.org/NET/UNIS/fiware/iot-lite#"
r4r,"http://guava.iis.sinica.edu.tw/r4r/"
dgfr,"http://colin.maudry.com/ontologies/dgfr#"
marcrole,"http://id.loc.gov/vocabulary/relators/"
dcatnl,"http://standaarden.overheid.nl/dcatnl/terms/"
decprov,"http://promsns.org/def/decprov#"
vort,"http://rockets.topbraid.solutions/vort/"
estatwrap,"http://ontologycentral.com/2009/01/eurostat/ns#"
psv,"http://www.wikidata.org/prop/statement/value/"
loci,"http://linked.data.gov.au/def/loci#"
imjv,"https://data.imjv.omgeving.vlaanderen.be/ns/imjv#"
smartapi,"http://smart-api.io/ontology/1.0/smartapi#"
rdavf,"http://rdaregistry.info/termList/videoFormat/"
valueflows,"https://w3id.org/valueflows/"
obws,"http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl#"
tikag,"https://www.tikag.com/"
gdprtext,"https://w3id.org/GDPRtEXT#"
s3n,"http://w3id.org/s3n/"
pham,"https://w3id.org/skgo/pham#"
daap,"http://daap.dsi.universite-paris-saclay.fr/wiki/"
gmo,"http://purl.jp/bio/10/gmo/"
fel,"http://w3id.org/vcb/fel#"
prohow,"https://w3id.org/prohow#"
llr,"http://lodlaundromat.org/resource/"
ontoneo,"http://purl.obolibrary.org/obo/ontoneo/"
geofabric,"http://linked.data.gov.au/def/geofabric#"
orgesv2,"http://datos.gob.es/sites/default/files/OntologiaDIR3/orges.owl#"
pmopb,"http://premon.fbk.eu/ontology/pb#"
isoadr,"http://reference.data.gov.au/def/ont/iso19160-1-address#"
xbrll,"https://w3id.org/vocab/xbrll#"
beo,"https://w3id.org/beo#"
nrv,"http://ns.inria.fr/nrv#"
soproptg,"http://sweetontology.net/propTemperatureGradient/"
fssp,"http://linkeddata.fssprus.ru/resource/"
stencila,"http://schema.stenci.la/"
scra,"http://purl.org/net/schemarama#"
isaterms,"http://purl.org/isaterms/"
somaoc,"http://sweetontology.net/matrOrganicCompound/"
gvoi,"http://assemblee-virtuelle.github.io/grands-voisins-v2/gv.owl.ttl#"
theme,"http://voc.odw.tw/theme/"
rimmf,"http://rimmf.com/vocab/"
iab,"https://www.iab.com/guidelines/taxonomy/"
chemsci,"https://w3id.org/skgo/chemsci#"
pq,"http://www.wikidata.org/prop/qualifier/"
crminf,"http://www.cidoc-crm.org/cidoc-crm/CRMinf/"
rdaad,"http://rdaregistry.info/Elements/a/datatype/"
bitl,"http://lib.bit.edu.cn/ontology/1.0/"
esdbpr,"http://es.dbpedia.org/resource/"
tsnchange,"http://purl.org/net/tsnchange#"
yandex,"http://yandex.ru/"
terms,"http://purl.org/dc/terms/"
biolink,"https://w3id.org/biolink/vocab/"
gnaf,"http://linked.data.gov.au/def/gnaf#"
ideotalex,"http://www.ideotalex.eu/datos/recurso/"
ordo,"http://www.orpha.net/ORDO/"
oplangel,"http://www.openlinksw.com/schemas/angel#"
sfl,"http://data.finlex.fi/schema/sfl/"
earth,"http://linked.earth/ontology#"
eproc2,"http://10.0.3.120/download/eproc_FORN_v04.owl#"
gdprov,"https://w3id.org/GDPRov#"
soreaa,"http://sweetontology.net/realmAtmo/"
m3,"http://sensormeasurement.appspot.com/m3#"
oplp,"http://www.openlinksw.com/ontology/purchases#"
odw,"http://odw.tw/"
estrf,"http://vocab.linkeddata.es/datosabiertos/def/transporte/trafico#"
shema,"http://schema.org/"
estatgph,"http://estatwrap.ontologycentral.com/id/nama_aux_gph#"
m3lite,"http://purl.org/iot/vocab/m3-lite#"
sostc,"http://sweetontology.net/stateChemical/"
gcon,"https://w3id.org/GConsent#"
cwlgit,"https://w3id.org/cwl/view/git/"
omnlc,"http://open-multinet.info/ontology/omn-lifecycle#"
mdont,"http://ont.matchdeck.com/"
esgs,"https://w3id.org/edwin/ontology/"
sopropp,"http://sweetontology.net/propPressure/"
pplan,"http://purl.org/net/p-plan#"
eqp,"https://data.nasa.gov/ontologies/atmonto/equipment#"
osys,"http://purl.org/olia/system.owl#"
capes,"http://vocab.capes.gov.br/def/vcav#"
jsonschema,"https://www.w3.org/2019/wot/json-schema#"
s4bldg,"https://w3id.org/def/saref4bldg#"
sorepsf,"http://sweetontology.net/reprSciFunction/"
ecowlim,"http://ecowlim.tfri.gov.tw/lode/resource/"
linkrel,"https://www.w3.org/ns/iana/link-relations/relation#"
rofet,"http://rdaregistry.info/termList/rofet/"
cwmo,"http://purl.org/cwmo/#"
snac,"http://socialarchive.iath.virginia.edu/"
dqc,"http://semwebquality.org/ontologies/dq-constraints#"
lesa,"http://hadatac.org/ont/lesa#"
lcsh,"http://id.loc.gov/authorities/subjects/"
wild,"http://purl.org/wild/vocab#"
sophatmowm,"https://sweetontology.net/phenAtmoWindMesoscale/"
sostv,"http://sweetontology.net/stateVisibility/"
voidwh,"http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl#"
sopropsdis,"http://sweetontology.net/propSpaceDistance/"
extech,"https://w3id.org/executionTechnique/ontology/"
sopropsl,"http://sweetontology.net/propSpaceLocation/"
soprocsc,"http://sweetontology.net/procStateChange/"
sophsy,"http://sweetontology.net/phenSystem/"
skoslex,"https://bp4mc2.org/def/skos-lex#"
ddb,"http://www.deutsche-digitale-bibliothek.de/edm/"
mexperf,"http://mex.aksw.org/mex-perf#"
medred,"http://w3id.org/medred/medred#"
sopropsp,"http://sweetontology.net/propSpeed/"
soproptf,"http://sweetontology.net/propTimeFrequency/"
lblodlg,"http://data.lblod.info/vocabularies/leidinggevenden/"
jup,"http://w3id.org/charta77/jup/"
sosttf,"http://sweetontology.net/stateTimeFrequency/"
iaph,"http://www.juntadeandalucia.es/datosabiertos/portal/iaph/dataset/dataset/6c199ca2-8d2e-4c12-833c-f28"
stx,"http://purl.org/cyber/stix#"
sweet,"http://sweetontology.net/"
sorepsrs,"http://sweetontology.net/reprSpaceReferenceSystem/"
wotsec,"https://www.w3.org/2019/wot/security#"
soreaofl,"http://sweetontology.net/realmOceanFloor/"
eppl,"https://w3id.org/ep-plan#"
loupe,"http://ont-loupe.linkeddata.es/def/core/"
epplan,"https://w3id.org/ep-plan#"
losp,"http://sparql.sstu.ru:3030/speciality/"
sorepsl,"http://sweetontology.net/reprSciLaw/"
sorept,"http://sweetontology.net/reprTime/"
sosto,"http://sweetontology.net/stateOrdinal/"
soreacz,"http://sweetontology.net/realmClimateZone/"
sorepmo,"http://sweetontology.net/reprMathOperation/"
soprocp,"http://sweetontology.net/procPhysical/"
sophfd,"http://sweetontology.net/phenFluidDynamics/"
frbroo,"http://iflastandards.info/ns/fr/frbr/frbroo/"
constant,"http://qudt.org/vocab/constant/"
sorepsc,"http://sweetontology.net/reprSciComponent/"
hctl,"https://www.w3.org/2019/wot/hypermedia#"
sopropsh,"http://sweetontology.net/propSpaceHeight/"
sorelm,"http://sweetontology.net/relaMath/"
dentsci,"https://w3id.org/skgo/dentsci#"
sostrr,"http://sweetontology.net/stateRoleRepresentative/"
sorepmso,"http://sweetontology.net/reprMathSolution/"
sophatmow,"http://sweetontology.net/phenAtmoWind/"
sopropsdir,"http://sweetontology.net/propSpaceDirection/"
sohut,"http://sweetontology.net/humanTransportation/"
esagm,"http://vocab.ciudadesabiertas.es/def/sector-publico/agenda-municipal#"
pineapple,"http://hexananas.com/pineapple#"
sopropti,"http://sweetontology.net/propTime/"
soproc,"http://sweetontology.net/proc/"
somamin,"http://sweetontology.net/matrMineral/"
eccf,"http://data.europa.eu/54i/"
soprope,"http://sweetontology.net/propEnergy/"
dave,"http://theme-e.adaptcentre.ie/dave#"
sorepmg,"http://sweetontology.net/reprMathGraph/"
sopropo,"http://sweetontology.net/propOrdinal/"
dprov,"http://promsns.org/def/do#"
sorepscd,"http://sweetontology.net/reprSpaceCoordinate/"
vehman,"http://deductions.github.io/vehicule-management.owl.ttl#"
sorepmfo,"http://sweetontology.net/reprMathFunctionOrthogonal/"
sorelh,"http://sweetontology.net/relaHuman/"
iospress,"http://ld.iospress.nl/rdf/ontology/"
soprops,"http://sweetontology.net/propSpace/"
sopropcat,"http://sweetontology.net/propCategorical/"
sohur,"http://sweetontology.net/humanResearch/"
soreaas,"http://sweetontology.net/realmAstroStar/"
foio,"https://w3id.org/seas/FeatureOfInterestOntology/"
somaae,"http://sweetontology.net/matrAerosol/"
sorepdp,"http://sweetontology.net/reprDataProduct/"
sorelpr,"http://sweetontology.net/relaProvenance/"
atts,"https://data.nasa.gov/ontologies/atmonto/general#"
sopropi,"http://sweetontology.net/propIndex/"
sorelcl,"http://sweetontology.net/relaClimate/"
ldc,"https://tac.nist.gov/tracks/SM-KBP/2018/ontologies/SeedlingOntology#"
skosthes,"http://purl.org/iso25964/skos-thes#"
sopropr,"http://sweetontology.net/propRotation/"
sopropmf,"http://sweetontology.net/propMassFlux/"
sostth,"http://sweetontology.net/stateThermodynamic/"
sohutr,"http://sweetontology.net/humanTechReadiness/"
sophoc,"http://sweetontology.net/phenOceanCoastal/"
sorepm,"http://sweetontology.net/reprMath/"
sophso,"http://sweetontology.net/phenSolid/"
misp,"http://purl.org/cyber/misp#"
sorepdsr,"http://sweetontology.net/reprDataServiceReduction/"
sorepsu,"http://sweetontology.net/reprSciUnits/"
sophatmopc,"http://sweetontology.net/phenAtmoPrecipitation/"
sorepmst,"http://sweetontology.net/reprMathStatistics/"
sopropsm,"http://sweetontology.net/propSpaceMultidimensional/"
somarock,"http://sweetontology.net/matrRock/"
biogrid,"http://thebiogrid.org/"
sorepdf,"http://sweetontology.net/reprDataFormat/"
sopropb,"http://sweetontology.net/propBinary/"
sopropfr,"http://sweetontology.net/propFraction/"
sopropcap,"http://sweetontology.net/propCapacity/"
somapl,"http://sweetontology.net/matrPlant/"
sopropcou,"http://sweetontology.net/propCount/"
sopropef,"http://sweetontology.net/propEnergyFlux/"
sorel,"http://sweetontology.net/rela/"
proton,"http://www.ontotext.com/proton/"
edupro,"http://ns.inria.fr/semed/eduprogression#"
sorep,"http://sweetontology.net/repr/"
sost,"http://sweetontology.net/state/"
soreps,"http://sweetontology.net/reprSpace/"
sophatmos,"http://sweetontology.net/phenAtmoSky/"
sopropq,"http://sweetontology.net/propQuantity/"
mccv,"http://purl.jp/bio/10/mccv#"
sostb,"http://sweetontology.net/stateBiological/"
somac,"http://sweetontology.net/matrCompound/"
hdgi,"https://w3id.org/hdgi#"
d2s,"https://w3id.org/d2s/"
twitter,"http://stocktwits.com/"
inchikey,"https://identifiers.org/inchikey:"
asgs,"http://linked.data.gov.au/def/asgs#"
sostso,"http://sweetontology.net/stateSolid/"
sostri,"http://sweetontology.net/stateRoleImpact/"
soreaaw,"http://sweetontology.net/realmAtmoWeather/"
sorelsc,"http://sweetontology.net/relaSci/"
sophft,"http://sweetontology.net/phenFluidTransport/"
trek,"https://w3id.org/trek/"
somains,"http://sweetontology.net/matrInstrument/"
sophec,"http://sweetontology.net/phenEcology/"
sopropfu,"http://sweetontology.net/propFunction/"
pcdmuse,"http://pcdm.org/use#"
sohuecons,"http://sweetontology.net/humanEnvirConservation/"
sorepsp,"http://sweetontology.net/reprSciProvenance/"
soreas,"http://sweetontology.net/realmSoil/"
cfrl,"http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#"
sorepsme,"http://sweetontology.net/reprSciMethodology/"
sorelsp,"http://sweetontology.net/relaSpace/"
matvoc,"http://stream-ontology.com/matvoc/"
sorepdsv,"http://sweetontology.net/reprDataServiceValidation/"
somaem,"http://sweetontology.net/matrElementalMolecule/"
somanr,"http://sweetontology.net/matrNaturalResource/"
sostrg,"http://sweetontology.net/stateRoleGeographic/"
sophcr,"http://sweetontology.net/phenCryo/"
sorepmf,"http://sweetontology.net/reprMathFunction/"
sophel,"http://sweetontology.net/phenElecMag/"
country,"http://eulersharp.sourceforge.net/2003/03swap/countries#"
sophatmofo,"http://sweetontology.net/phenAtmoFog/"
sopropdifu,"http://sweetontology.net/propDiffusivity/"
lprov,"http://id.learning-provider.data.ac.uk/terms#"
sorepdsg,"http://sweetontology.net/reprDataServiceGeospatial/"
sophst,"http://sweetontology.net/phenStar/"
phto,"http://rhizomik.net/ontologies/PlantHealthThreats.owl.ttl#"
sopropdr,"http://sweetontology.net/propDimensionlessRatio/"
osmt,"https://wiki.openstreetmap.org/wiki/Key:"
sorealc,"http://sweetontology.net/realmLandCoastal/"
sorear,"http://sweetontology.net/realmRegion/"
osmm,"https://www.openstreetmap.org/meta/"
soreac,"http://sweetontology.net/realmCryo/"
sostrt,"http://sweetontology.net/stateRoleTrust/"
somais,"http://sweetontology.net/matrIsotope/"
sophcm,"http://sweetontology.net/phenCycleMaterial/"
sorealo,"http://sweetontology.net/realmLandOrographic/"
sopropm,"http://sweetontology.net/propMass/"
sorealp,"http://sweetontology.net/realmLandProtected/"
soph,"http://sweetontology.net/phen/"
sorepdsa,"http://sweetontology.net/reprDataServiceAnalysis/"
sorelch,"http://sweetontology.net/relaChemical/"
sopropdife,"http://sweetontology.net/propDifference/"
sorelt,"http://sweetontology.net/relaTime/"
sorepsd,"http://sweetontology.net/reprSpaceDirection/"
sophei,"http://sweetontology.net/phenEnvirImpact/"
sophatmoc,"http://sweetontology.net/phenAtmoCloud/"
cci,"http://cookingbigdata.com/linkeddata/ccinstances#"
sosttg,"http://sweetontology.net/stateTimeGeologic/"
somaen,"http://sweetontology.net/matrEnergy/"
soreaabl,"http://sweetontology.net/realmAtmoBoundaryLayer/"
ciao,"http://ciao.it/"
eupont,"http://elite.polito.it/ontologies/eupont.owl#"
sopropcha,"http://sweetontology.net/propCharge/"
soreabb,"http://sweetontology.net/realmBiolBiome/"
sorelph,"http://sweetontology.net/relaPhysical/"
sophcy,"http://sweetontology.net/phenCycle/"
esbici,"http://vocab.ciudadesabiertas.es/def/transporte/bicicleta-publica#"
ingredient,"http://www.owl-ontologies.com/test.owl/ingredient/"
wds,"http://www.wikidata.org/entity/statement/"
somarocki,"http://sweetontology.net/matrRockIgneous/"
sohues,"http://sweetontology.net/humanEnvirStandards/"
probont,"http://www.probonto.org/ontology#"
ggbn,"http://data.ggbn.org/schemas/ggbn/terms/"
sopropche,"http://sweetontology.net/propChemical/"
somaind,"http://sweetontology.net/matrIndustrial/"
sostsy,"http://sweetontology.net/stateSystem/"
somaw,"http://sweetontology.net/matrWater/"
bldont,"http://ont.biglinkeddata.com/"
soprop,"http://sweetontology.net/prop/"
sostsb,"http://sweetontology.net/stateSpectralBand/"
sorepds,"http://sweetontology.net/reprDataService/"
sophpc,"http://sweetontology.net/phenPlanetClimate/"
mmms,"http://ldf.fi/schema/mmm/"
somaf,"http://sweetontology.net/matrFacility/"
sophwn,"http://sweetontology.net/phenWaveNoise/"
donto,"http://reference.data.gov.au/def/ont/dataset#"
sophatmol,"http://sweetontology.net/phenAtmoLightning/"
sophb,"http://sweetontology.net/phenBiol/"
sorepdm,"http://sweetontology.net/reprDataModel/"
sopropcon,"http://sweetontology.net/propConductivity/"
sohuj,"http://sweetontology.net/humanJurisdiction/"
somab,"http://sweetontology.net/matrBiomass/"
sophatmot,"http://sweetontology.net/phenAtmoTransport/"
soreao,"http://sweetontology.net/realmOcean/"
sophod,"http://sweetontology.net/phenOceanDynamics/"
lv2,"http://lv2plug.in/ns/lv2core/"
meat,"http://example.com/"
sorepts,"http://sweetontology.net/reprTimeSeason/"
somael,"http://sweetontology.net/matrElement/"
sopropst,"http://sweetontology.net/propSpaceThickness/"
soprocw,"http://sweetontology.net/procWave/"
soreahb,"http://sweetontology.net/realmHydroBody/"
sosttc,"http://sweetontology.net/stateTimeCycle/"
gleio,"http://lei.info/gleio/"
sophr,"http://sweetontology.net/phenReaction/"
taxref,"http://taxref.mnhn.fr/lod/taxon/"
soreal,"http://sweetontology.net/realmLandform/"
soreaah,"http://sweetontology.net/realmAstroHelio/"
istex,"https://data.istex.fr/ontology/istex#"
bs,"https://w3id.org/bs#"
sophm,"http://sweetontology.net/phenMixing/"
cbs,"http://betalinkeddata.cbs.nl/def/cbs#"
sostf,"http://sweetontology.net/stateFluid/"
somaeq,"http://sweetontology.net/matrEquipment/"
sophsyc,"http://sweetontology.net/phenSystemComplexity/"
dbm,"http://purl.org/net/dbm/ontology#"
somaio,"http://sweetontology.net/matrIon/"
soreptd,"http://sweetontology.net/reprTimeDay/"
sostsp,"http://sweetontology.net/stateSpace/"
sophw,"http://sweetontology.net/phenWave/"
pnv,"https://w3id.org/pnv#"
atd,"https://data.nasa.gov/ontologies/atmonto/data#"
sostdp,"http://sweetontology.net/stateDataProcessing/"
sostrc,"http://sweetontology.net/stateRoleChemical/"
sophatmofr,"http://sweetontology.net/phenAtmoFront/"
sorepsg3,"http://sweetontology.net/reprSpaceGeometry3D/"
soprocc,"http://sweetontology.net/procChemical/"
rank,"http://www.ontotext.com/owlim/RDFRank#"
ccomid,"http://www.ontologyrepository.com/CommonCoreOntologies/Mid/"
sophatmops,"http://sweetontology.net/phenAtmoPressure/"
snomedct,"http://purl.bioontology.org/ontology/SNOMEDCT/"
sostre,"http://sweetontology.net/stateRealm/"
sohu,"http://sweetontology.net/human/"
omim,"http://purl.bioontology.org/ontology/OMIM/"
schoi,"https://w3id.org/scholarlydata/ontology/indicators-ontology.owl#"
idsc,"https://w3id.org/idsa/code/"
ocsw,"http://data.diekb.org/def/ocsw#"
omop,"http://api.ohdsi.org/WebAPI/vocabulary/concept/"
sopropt,"http://sweetontology.net/propTemperature/"
somas,"http://sweetontology.net/matrSediment/"
mobiliteit,"https://data.vlaanderen.be/ns/mobiliteit#"
mbkeys,"https://pastebin.com/ThBfphb8#"
sostti,"http://sweetontology.net/stateTime/"
she,"http://shacleditor.org/"
soman,"http://sweetontology.net/matrAnimal/"
sophatmo,"http://sweetontology.net/phenAtmo/"
sostp,"http://sweetontology.net/statePhysical/"
compub,"https://sireneld.io/vocab/compub#"
sorealf,"http://sweetontology.net/realmLandFluvial/"
asio,"http://purl.org/hercules/asio/core#"
sophen,"http://sweetontology.net/phenEnergy/"
sophfi,"http://sweetontology.net/phenFluidInstability/"
say,"https://say.data.gift/ns/"
sostrb,"http://sweetontology.net/stateRoleBiological/"
sophhy,"http://sweetontology.net/phenHydro/"
sostss,"http://sweetontology.net/stateSpaceScale/"
s4city,"https://saref.etsi.org/saref4city/"
gas,"http://www.bigdata.com/rdf/gas#"
soreaofe,"http://sweetontology.net/realmOceanFeature/"
somapa,"http://sweetontology.net/matrParticle/"
soreaer,"http://sweetontology.net/realmEarthReference/"
sophhe,"http://sweetontology.net/phenHelio/"
malaka,"http://george.gr/"
sophgt,"http://sweetontology.net/phenGeolTectonic/"
oco,"https://w3id.org/oc/ontology/"
sohueccont,"http://sweetontology.net/humanEnvirControl/"
sorealv,"http://sweetontology.net/realmLandVolcanic/"
sostro,"http://sweetontology.net/stateRole/"
soall,"http://sweetontology.net/sweetAll/"
brot,"https://w3id.org/brot#"
somamic,"http://sweetontology.net/matrMicrobiota/"
sostef,"http://sweetontology.net/stateEnergyFlux/"
io,"https://iaco.me/"
birthdate,"http://schema.org/birthDate/"
sohuc,"http://sweetontology.net/humanCommerce/"
sostsc,"http://sweetontology.net/stateSpaceConfiguration/"
sorealg,"http://sweetontology.net/realmLandGlacial/"
cto,"https://w3id.org/cto#"
ccsla,"http://cookingbigdata.com/linkeddata/ccsla#"
atm,"https://data.nasa.gov/ontologies/atmonto/ATM#"
oplsoft,"http://www.openlinksw.com/ontology/software#"
sophgs,"http://sweetontology.net/phenGeolSeismicity/"
dd,"http://example.org/dummydata/"
gx,"https://graphite.synaptica.net/extension/"
sopho,"http://sweetontology.net/phenOcean/"
soreaab,"http://sweetontology.net/realmAstroBody/"
persoon,"http://data.vlaanderen.be/ns/persoon#"
sorepsmo,"http://sweetontology.net/reprSciModel/"
arp,"http://www.arpenteur.org/ontology/Arpenteur.owl#"
sostst,"http://sweetontology.net/stateStorm/"
wasa,"http://vocab.sti2.at/wasa/"
dfc,"http://datafoodconsortium.org/ontologies/DFC_FullModel.owl#"
sohuea,"http://sweetontology.net/humanEnvirAssessment/"
iaco,"https://iaco.me/"
sophgg,"http://sweetontology.net/phenGeolGeomorphology/"
sohua,"http://sweetontology.net/humanAgriculture/"
taxrefprop,"http://taxref.mnhn.fr/lod/property/"
sostsl,"http://sweetontology.net/stateSpectralLine/"
fibo,"https://spec.edmcouncil.org/fibo/ontology/master/latest/"
s4agri,"https://saref.etsi.org/saref4agri/"
docam,"https://www.docam.ca/glossaurus/"
bperson,"http://data.vlaanderen.be/ns/persoon#"
sohud,"http://sweetontology.net/humanDecision/"
sophg,"http://sweetontology.net/phenGeol/"
osmrel,"https://www.openstreetmap.org/relation/"
ei2a,"http://opendata.aragon.es/def/ei2a#"
sorealt,"http://sweetontology.net/realmLandTectonic/"
waa,"http://purl.oclc.org/NET/WebApiAuthentication#"
dfcb,"http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#"
trak,"https://purl.org/trak/elements/"
ld,"http://linkeddata.ru/"
soreala,"http://sweetontology.net/realmLandAeolian/"
sophgv,"http://sweetontology.net/phenGeolVolcano/"
fernanda,"http://fernanda.nl/"
ci,"https://privatealpha.com/ontology/content-inventory/1#"
s4ener,"https://saref.etsi.org/saref4ener/"
uimo,"http://vocab.sti2.at/uimo/"
mgv,"http://mangaview.fr/mgv#"
sophgf,"http://sweetontology.net/phenGeolFault/"
ccr,"http://cookingbigdata.com/linkeddata/ccregions#"
osmway,"https://www.openstreetmap.org/way/"
sorea,"http://sweetontology.net/realm/"
osmnode,"https://www.openstreetmap.org/node/"
oplfeat,"http://www.openlinksw.com/ontology/features#"
ldes,"https://w3id.org/ldes#"
ogura,"https://sparql.crssnky.xyz/Ogura_Hyakunin_Isshu_LinkedRDF/URIs/Ogura_Hyakunin_Isshu_schema.ttl#"
gco,"http://purl.jp/bio/12/glyco/conjugate#"
eppo,"https://gd.eppo.int/taxon/"
knows,"http://semantic.komc/usu/2020/knows#"
wotc,"http://purl.org/wot-catalogue#"
toaru,"https://metadata.moe/toaru-sparql/elements/"
rl,"http://rl.com/resources/"
mr,"http://marineregions.org/ns/ontology#"
saref4envi,"https://saref.etsi.org/saref4envi/"
kko,"http://kbpedia.org/kko/rc/"
movieo,"http://movie.com/ontology/"
ebg,"http://data.businessgraph.io/ontology#"
jur,"http://sweet.jpl.nasa.gov/2.3/humanJurisdiction.owl#"
maroc,"http://fr.dbpedia.org/page/Maroc/"
lexicog,"http://www.w3.org/ns/lemon/lexicog#"
bao,"http://www.bioassayontology.org/bao#"
cts,"http://rdf.cdisc.org/ct/schema#"
univ,"http://univ.io/"
mpg123,"https://devuan.net.br/wiki/mpg123/"
motogp,"http://www.motogp.com/"
ble,"http://vocab.rapidthings.eu/ns/ble.ttl#"
mltd,"https://mltd.pikopikopla.net/mltd-schema#"
dbonto,"http://dbepedia.org/ontology/"
esconv,"http://vocab.ciudadesabiertas.es/def/sector-publico/convenio#"
fx,"http://sparql.xyz/facade-x/ns/"
srv,"http://www.daml.org/services/owl-s/1.2/Service.owl#"
cso,"http://cso.kmi.open.ac.uk/schema/cso/"
estraf,"http://vocab.ciudadesabiertas.es/def/transporte/trafico#"
vlueprint,"https://vlueprint.org/schema/"
accid,"http://pid.accurids.com/"
gom,"https://w3id.org/gom#"
la,"https://linked.art/ns/terms/"
quran,"http://khalidaloufi.sa/quran#"
ams,"http://data.amadeus.com/"
hola,"https://moodle.insa-lyon.fr/course/view.php?id="
marcgt,"https://id.loc.gov/vocabulary/marcgt/"
xyz,"http://sparql.xyz/facade-x/data/"
prismdb,"https://prismdb.takanakahiko.me/prism-schema.ttl#"
sty,"http://purl.bioontology.org/ontology/STY/"
pgxo,"http://pgxo.loria.fr/"
rdasource,"http://rdaregistry.info/termList/RDARecordingSources/"
i18n,"https://www.w3.org/ns/i18n#"
mag,"https://makg.org/property/"
contry,"http://dbpedia.org/resource/Lyon#"
geodcat,"http://data.europa.eu/930/"
tso,"https://w3id.org/tso#"
melding,"http://lblod.data.gift/vocabularies/automatische-melding/"
bop,"https://w3id.org/bop#"
rdaut,"http://rdaregistry.info/termList/RDAUnitOfTime/"
ibeacon,"http://vocab.rapidthings.eu/ns/apple/ibeacon.ttl#"
karstlink,"https://ontology.uis-speleo.org/ontology/#"
w3id,"https://w3id.org/"
contax,"https://w3id.org/con-tax#"
hpont,"https://w3id.org/hpont#"
nsg,"https://neuroshapes.org/"
mdcs,"https://mdcs.monumentenkennis.nl/damageatlas/ontology#"
rofchrda,"http://rdaregistry.info/termList/rofchrda/"
oeso,"http://www.opensilex.org/vocabularies/oeso#"
rdapol,"http://rdaregistry.info/termList/RDAPolarity/"
smithy,"https://awslabs.github.io/smithy/rdf-1.0#"
mnx,"https://rdf.metanetx.org/schema/"
dom,"https://html.spec.whatwg.org/#"
esautob,"http://vocab.ciudadesabiertas.es/def/transporte/autobus#"
rpg,"http://rpg.data.is4.site/"
slm,"http://urn.fi/URN:NBN:fi:au:slm:"
textgrid,"https://textgridrep.org/"
srr,"https://w3id.org/srr#"
vph,"http://purl.org/ozo/vph.owl#"
bdg,"http://data.bigdatagrapes.eu/resource/ontology/"
w3geo,"http://www.w3.org/2003/01/geo/wgs84_pos#"
freq,"http://purl.org/cld/freq/"
esempleo,"http://vocab.ciudadesabiertas.es/def/sector-publico/empleo#"
hops,"https://rdf.ag/o/hops#"
samian,"http://lod.archaeology.link/data/samian/"
ssnx,"http://purl.oclc.org/NET/ssnx/ssn#"
bcom,"https://w3id.org/bcom#"
rdat,"http://rdaregistry.info/Elements/t/"
datagc,"https://data.grottocenter.org/ldp/"
rdaio,"http://rdaregistry.info/Elements/i/object/"
mesh2021,"http://id.nlm.nih.gov/mesh/2021/"
check,"http://pornhub.com/"
rdaao,"http://rdaregistry.info/Elements/a/object/"
matrycs,"http://matrycs.com/"
kpd,"http://purl.org/kpd/"
vr,"https://www.w3.org/2018/credentials/v1/"
aspect,"http://purl.org/aspect/"
rdaep,"http://rdaregistry.info/termList/RDAExtensionPlan/"
oghamonto,"http://ontology.ogham.link/"
rdaxd,"http://rdaregistry.info/Elements/x/datatype/"
bleadapter,"http://vocab.rapidthings.eu/ns/ble/adapter.ttl#"
epcis,"https://ns.gs1.org/epcis/"
m8g,"http://data.europa.eu/m8g/"
lado,"http://archaeology.link/ontology#"
faas,"http://semantic-faas.com/ontology#"
itops,"https://vocab.eccenca.com/itops/"
memorix,"http://memorix.io/ontology#"
sou,"http://qudt.org/vocab/sou/"
rdaid,"http://rdaregistry.info/Elements/i/datatype/"
idpo,"https://w3id.org/idpo#"
folio,"http://IBCNServices.github.io/Folio-Ontology/Folio.owl#"
rdato,"http://rdaregistry.info/Elements/t/object/"
rdatb,"http://rdaregistry.info/termList/RDATypeOfBinding/"
seasd,"https://w3id.org/seas/"
comp,"http://semweb.mmlab.be/ns/rml-compression#"
rdatd,"http://rdaregistry.info/Elements/t/datatype/"
rdan,"http://rdaregistry.info/Elements/n/"
mrk,"http://www.mydomain.org/Mrk-ns#"
spec,"http://www.w3.org/ns/spec#"
rdamo,"http://rdaregistry.info/Elements/m/object/"
rdaed,"http://rdaregistry.info/Elements/e/datatype/"
cbv,"https://ns.gs1.org/cbv/"
signify,"http://purl.org/signify/ns#"
oidc,"http://www.w3.org/ns/solid/oidc#"
ogham,"http://lod.ogham.link/data/"
cinema,"http://www.semanticweb.org/julien/morgann/cinema#"
rdand,"http://rdaregistry.info/Elements/n/datatype/"
rdano,"http://rdaregistry.info/Elements/n/object/"
arena,"https://solid.ti.rw.fau.de/public/ns/arena#"
ch,"https://schema.ld.admin.ch/"
cerealstoo,"http://rdf.ag/o/cerealstoo#"
eurio,"http://data.europa.eu/s66#"
rdaxo,"http://rdaregistry.info/Elements/x/object/"
rdawd,"http://rdaregistry.info/Elements/w/datatype/"
kdsf,"https://kerndatensatz-forschung.de/version1/technisches_datenmodell/owl/kdsf.owl#"
react,"https://w3id.org/react#"
rofsfrda,"http://rdaregistry.info/termList/rofsfrda/"
citedcat,"https://w3id.org/citedcat-ap/"
paf,"https://paf.link/"
rdatask,"http://rdaregistry.info/termList/RDATasks/"
ofn,"http://www.ontotext.com/sparql/functions/"
luigiusai,"https://www.luigiusai.it/wp#"
rdap,"http://rdaregistry.info/Elements/p/"
bau,"https://terminology.fraunhofer.de/voc/bau#"
biocrm,"http://ldf.fi/schema/bioc/"
rdamd,"http://rdaregistry.info/Elements/m/datatype/"
cgo,"https://www.tno.nl/agrifood/ontology/common-greenhouse-ontology#"
rdamat,"http://rdaregistry.info/termList/RDAMaterial/"
rdapath,"http://rdaregistry.info/termList/RDARecordingMethods/"
rdapd,"http://rdaregistry.info/Elements/p/datatype/"
mrt,"http://marineregions.org/ns/placetypes#"
bcfowl,"http://lbd.arch.rwth-aachen.de/bcfOWL#"
nanopub,"http://www.nanopub.org/nschema#"
eep,"https://w3id.org/eep#"
rdasca,"http://rdaregistry.info/termList/scale/"
roffgrda,"http://rdaregistry.info/termList/roffgrda/"
ea,"http://eaontology.protect.linkeddata.es/def/"
tci,"https://w3id.org/lbs/tci#"
xmlns,"http://www.w3.org/2021/XMLSchema#"
rofitrda,"http://rdaregistry.info/termList/rofitrda/"
rdawo,"http://rdaregistry.info/Elements/w/object/"
rdaim,"http://rdaregistry.info/termList/RDAInteractivityMode/"
encargado,"http://semRAT.edu/"
cpc,"https://data.epo.org/linked-data/def/cpc/"
djo,"http://purl.org/datajourneys/"
uberon,"http://purl.obolibrary.org/obo/UBERON_"
cpg,"http://modellingdh.github.io/ont/odp/pgc/"
opltw,"http://www.openlinksw.com/schemas/twitter#"
srtun,"https://www.inf.bi.rub.de/srtun#"
aff,"https://w3id.org/affectedBy#"
gax,"http://w3id.org/gaia-x/core#"
edu,"https://schema.edu.ee/"
m4i,"http://w3id.org/nfdi4ing/metadata4ing#"
olias,"http://purl.org/olia/system.owl#"
poke,"https://pokemonkg.org/ontology#"
bag2,"http://bag.basisregistraties.overheid.nl/def/bag#"
rmlt,"http://semweb.mmlab.be/ns/rml-target#"
asf,"https://www.stm-assoc.org/asf/"
esc,"https://solid.ti.rw.fau.de/public/ns/event-sourcing-containers#"
archivo,"https://archivo.dbpedia.org/onto#"
nprl,"http://data.nobelprize.org/resource/laureate/"
nbo,"http://data.bioontology.org/ontologies/NBO/"
quid,"https://w3id.org/quid/"
generiek,"https://data.vlaanderen.be/ns/generiek#"
paam,"https://lod.mediathek-tanz-theater.de/schema/paam/"
hqdmontol,"http://www.semanticweb.org/magma-core/ontologies/hqdm#"
s223,"http://data.ashrae.org/standard223#"
ewg,"http://ethoinformatics.org/"
rc,"https://w3id.org/rc#"
ghga,"http://w3id.org/ghga/"
nsd,"https://w3id.org/nsd#"
ontobras,"http://www.semanticweb.org/fefar/ontologies/ontobras#"
eb,"https://w3id.org/eb#"
lsqr,"http://lsq.aksw.org/"
caso,"http://www.w3id.org/def/caso#"
srt,"http://w3id.org/srt#"
srmo,"https://w3id.org/srmo#"
ppeer,"http://parliament.uk/ontologies/peerage/"
wdno,"http://www.wikidata.org/prop/novalue/"
interop,"http://www.w3.org/ns/solid/interop#"
chameo,"https://w3id.org/emmo/domain/characterisation-methodology/chameo#"
stix,"http://purl.org/cyber/stix#"
wfont,"https://w3id.org/wfont#"
setl,"http://purl.org/twc/vocab/setl/"
hqdm,"http://www.semanticweb.org/hqdm#"
ldpsc,"https://solid.ti.rw.fau.de/public/ns/stream-containers#"
jsonld,"http://www.w3.org/ns/json-ld#"
dsd,"https://w3id.org/dsd#"
lds,"https://solid.ti.rw.fau.de/public/ns/linked-data-structures#"
walmart,"https://www.amazon.de/"
feed,"https://www.feedipedia.org/"
tern,"http://w3id.org/tern/ontologies/tern/"
raum,"https://terminology.fraunhofer.de/voc/raum#"
marc,"http://www.loc.gov/MARC21/slim/"
hni,"https://collectiedata.hetnieuweinstituut.nl/"
ofo,"https://w3id.org/ofo#"
rto,"https://w3id.org/rail/topo#"
magmauser,"http://www.semanticweb.org/magma-core/user#"
sds,"https://w3id.org/sds#"
express,"https://w3id.org/express#"
nomo,"https://nomenclature.info/nom/ontology/"
diso,"https://purls.helmholtz-metadaten.de/diso#"
osdu,"https://w3id.org/OSDU#"
rdaeo,"http://rdaregistry.info/Elements/e/object/"
rsx,"http://rdf4j.org/shacl-extensions#"
gufo,"http://purl.org/nemo/gufo#"
magmardl,"http://www.semanticweb.org/magma-core/rdl#"
godaddy,"https://sso.godaddy.com/"
tro,"https://w3id.org/TRO/"
lbds,"https://w3id.org/lbdserver#"
value,"http://gfgfd.vs/"
nom,"https://nomenclature.info/nom/"
kgi,"http://ns.inria.fr/kg/index#"
lbdserver,"https://w3id.org/lbdserver#"
stirdata,"https://w3id.org/stirdata/vocabulary/"
pgo,"http://ii.uwb.edu.pl/pgo#"
conllu,"https://universaldependencies.org/format.html#"
lrcommon,"http://landregistry.data.gov.uk/def/common/"
oeo,"http://openenergy-platform.org/ontology/oeo/"
linkml,"https://w3id.org/linkml/"
bdsubj,"https://purl.org/fidbaudigital/subjects#"
rro,"http://semanticweb.org/patricia/ontologies/rro#"
fpr,"http://www.filmstandards.org/schemas/filmportal_relations#"
cido,"http://purl.obolibrary.org/obo/cido.owl/"
tempo,"http://purl.org/tempo/"
dmo,"https://w3id.org/dmo#"
chemrof,"https://w3id.org/chemrof/"
experts,"http://emmo.info/emmo/application/maeo/experts#"
rnce,"https://data.cultureelerfgoed.nl/id/rnce#"
rsp,"http://www.researchspace.org/resource/"
respond,"https://w3id.org/respond#"
weki,"https://en.wikipedia.org/wiki/"
besluitvor,"https://data.vlaanderen.be/ns/besluitvorming#"
dsi,"https://data.dsi.omgeving.vlaanderen.be/ns/dsi#"
roh,"http://w3id.org/roh#"
rism,"http://rism.online/"
icon,"https://w3id.org/icon/ontology/"
robotarm,"https://solid.ti.rw.fau.de/public/ns/robotArm#"
osmo,"https://purl.org/vimmp/osmo#"
linkedart,"https://linked.art/ns/terms/"
itcrdf,"http://www.w3.org/2005/11/its/rdf#"
vntourism,"http://www.semanticweb.org/minhn/ontologies/2021/0/vntourism#"
perscido,"https://perscido.univ-grenoble-alpes.fr/"
covido,"https://w3id.org/CovidO#"
ultragaz,"https://ultragaz24horas.com/"
raad,"https://raadzaam.nl/schema/"
veelana,"http://onlyfans.com/veelana/"
fso,"https://w3id.org/fso#"
chess,"http://purl.org/NET/rdfchess/ontology/"
dbd,"http://dbpedia.org/datatype/"
vl,"https://version.link/"
bp3,"http://www.biopax.org/release/biopax-level3.owl#"
rtedurp,"http://purl.org/eduo/rtedurp/"
consolid,"https://w3id.org/consolid#"
gql,"http://www.openlinksw.com/schemas/graphql#"
iddo,"https://w3id.org/iddo#"
era,"http://data.europa.eu/949/"
dqvno,"https://data.norge.no/vocabulary/dqvno#"
mondo,"http://purl.obolibrary.org/obo/"
ttrpg,"https://w3id.org/TTRpg#"
kokot,"http://www.koko.t/"
rcgs,"https://collection.rcgs.jp/terms/"
crmsci,"http://www.cidoc-crm.org/extensions/crmsci/"
cvb,"http://rdfs.org/resume-rdf/base.rdfs#"
ufo,"http://ufo.com/#"
grscicoll,"https://www.gbif.org/grscicoll/collection/"
epo,"http://data.europa.eu/a4g/ontology#"
ammo,"http://ldf.fi/schema/ammo/"
pubchem,"https://pubchem.ncbi.nlm.nih.gov/"
relation,"http://www.iana.org/assignments/relation/"
peco,"https://w3id.org/peco#"
nen2660,"https://w3id.org/nen2660/def#"
bmp,"http://w3id.org/bmp#"
apods,"http://activitypods.org/ns/core#"
coy,"https://schema.coypu.org/global#"
film,"http://semantics.id/ns/example/film/"
iottta,"https://w3id.org/iot-tta#"
fdp,"https://w3id.org/fdp/fdp-o#"
dcb,"http://dbpedia.org/resource/Category:"
nalt,"https://lod.nal.usda.gov/nalt/"
thub,"http://vocabularis.crai.ub.edu/thub/"
dick,"http://pornhub.com/"
vcs,"https://data.vlaanderen.be/ns/chemische_stof#"
lis,"http://rds.posccaesar.org/ontology/lis14/rdl/"
dcatno,"https://data.norge.no/vocabulary/dcatno#"
skosm,"http://www.w3.org/2004/02/skos/mapping#"
yanice,"http://yanice-boady.webflow.io/"
ntp,"https://schema.finto.fi/ntp#"
stax,"https://w3id.org/stax/ontology#"
hmas,"https://purl.org/hmas/"
koko,"https://seznam.cz/"
vhbieo,"https://w3id.org/vhbieo#"
version,"https://version.link/"
aec3po,"https://w3id.org/lbd/aec3po/"
nutscode,"http://data.europa.eu/nuts/code/"
bto,"http://w3id.org/emmo-bto/bto#"
to,"http://purl.obolibrary.org/obo/TO_"
lol,"https://sbalot.github.io/lol/"
plant,"http://example.org/plant/"
mi,"http://www.marineinfo.org/ns/ontology#"
coda,"http://art.uniroma2.it/coda/contracts/"
acp,"http://www.w3.org/ns/solid/acp#"
ncbi,"https://www.ncbi.nlm.nih.gov/"
goavoc,"http://bio2rdf.org/goa_vocabulary:"
ceox,"https://linkeddata.cultureelerfgoed.nl/def/ceox#"
hyr,"https://w3id.org/simulation/data/"
coreo,"http://purl.org/coreo#"
spatialf,"http://jena.apache.org/function/spatial#"
dbpg,"http://dbpedia.org/page/"
lcnaf,"http://id.loc.gov/authorities/names/"
ecfo,"https://w3id.org/ecfo#"
risk,"https://www.w3id.org/risk#"
ags,"https://id.agschemas.org/"
fdof,"https://w3id.org/fdof/ontology#"
docbook,"http://docbook.org/ns/docbook/"
dcatap,"http://data.europa.eu/r5r/"
tsso,"https://scch.org/technical_standards#"
cur,"http://qudt.org/2.1/vocab/currency/"
databus,"https://dataid.dbpedia.org/databus#"
threat,"https://cve.mitre.org/"
bacnet,"http://data.ashrae.org/bacnet/2020#"
mindat,"https://www.mindat.org/"
coos,"http://id.unece.org/def/coos#"
doce,"http://purl.org/nemo/doce#"
fisa,"https://ifitkau.github.io/fisa/"
fs,"https://www.compliancequest.com/training-management-software-system-solutions/"
egdo,"http://example.org/"
atcc,"https://www.atcc.org/products/"
iop,"https://w3id.org/iadopt/ont/"
matmine,"http://materialsmine.org/ns/"
rdb,"http://www.dbs.cs.uni-duesseldorf.de/RDF/relational#"
hu,"https://mail.google.com/"
emmo,"https://w3id.org/emmo#"
asb,"https://w3id.org/asbingowl/core#"
rb,"https://w3id.org/riverbench/schema/metadata#"
baf,"https://w3id.org/baf#"
ontologia,"http://ub.edu/dades/ontologia/Cinema#Cinemes#"
ontouml,"https://w3id.org/ontouml#"
bsdd,"http://bsdd.buildingsmart.org/def#"
sure,"http://ns.inria.fr/sure#"
cpsvno,"http://data.norge.no/vocabulary/cpsvno#"
sense,"https://w3id.org/sense#"
imbor,"https://data.crow.nl/imbor/def/"
uio,"https://www.mitre.org/mparmelee/ontologies/2023/6/UserIntentOntology/"
skosno,"http://data.norge.no/skosno#"
doam,"http://emmo.info/doam#"
oav,"http://lod.openaire.eu/vocab/"
mibc,"http://marineinfo.org/ns/library/bibcodes#"
keyon,"http://keyelements.ltd/ontologies/keyon/#"
notify,"http://www.w3.org/ns/solid/notifications#"
wrroc,"https://w3id.org/ro/terms/workflow-run#"
quest,"https://rb.gy/ntg7l/"
ind,"https://w3id.org/inesdata#"
ksamsok,"http://kulturarvsdata.se/ksamsok#"
dde,"https://www.ddeworld.org/"
oplben,"http://www.openlinksw.com/ontology/benefits#"
p2po,"https://purl.org/p2p-o#"
pit,"http://data.elsevier.com/vocabulary/ElsevierPubItemTypes/"
sssom,"https://w3id.org/sssom/"
ocmv,"https://w3id.org/ontouml-models/vocabulary#"
cercabib,"https://cercabib.ub.edu/"
batmanont,"http://emmo.info/emmo/application/bmo#"
mibt,"https://marineinfo.org/ns/library/bibtypes#"
bioschemas,"https://bioschemas.org/"
quit,"http://quit.aksw.org/vocab/"
rbdoc,"https://w3id.org/riverbench/schema/documentation#"
into,"https://app.korfin.de/ontology/into/"
przecieki,"http://onlyfans.com/emiliaszymanska/"
ogcf,"http://www.opengis.net/def/function/geosparql/"
maeo,"http://w3id.org/emmo-maeo/maeo#"
w3,"http://www.w3.org/"
bcgo,"http://purl.obolibrary.org/obo/ZP_"
pbac,"https://w3id.org/pbac#"
semapv,"https://w3id.org/semapv/vocab/"
mifesto,"https://w3id.org/mifesto#"
olis,"http://olis.dev/"
hy,"https://api.hyprdia.com/"
ies4,"http://ies.data.gov.uk/ontology/ies4#"
eurovoc,"http://eurovoc.europa.eu/"
ioc,"http://w3id.org/ioc#"
soa,"https://semopenalex.org/ontology/"
cp,"http://schemas.openxmlformats.org/package/2006/metadata/core-properties/"
lpwc,"https://linkedpaperswithcode.com/property/"
plasma,"https://w3id.org/plasma#"
ies,"http://ies.data.gov.uk/ontology/ies4#"
mir,"http://marineinfo.org/ns/person/roles#"
exekg,"https://raw.githubusercontent.com/nsai-uio/ExeKGOntology/main/ds_exeKGOntology.ttl#"
top,"http://w3id.org/topologicpy#"
iig,"https://w3id.org/iicongraph/data/"
guez,"http://guez.fr/"
htv,"http://www.w3.org/2011/http#"
pcp,"https://pcp-on-web.de/ontology/0.2/index-en.html#"
sri,"https://w3id.org/sri#"
cergy,"https://dbpedia.org/page/Cergy/"
ohd,"http://purl.obolibrary.org/obo/ZP_"
miprog,"https://marineinfo.org/ns/progress#"
pico,"https://personsincontext.org/model#"
hpo,"http://w3id.org/emmo-hpo/hpo#"
htn,"http://purl.obolibrary.org/obo/ZP_"
chpaf,"https://ch.paf.link/"
oio,"http://www.geneontology.org/formats/oboInOwl#"
doid,"http://purl.obolibrary.org/obo/DOID_"
deonta,"https://deonta.linkedmodel.org/deonta/"
imdb,"http://m.imdb.com/"
hom,"http://purl.obolibrary.org/obo/HOM_"
mpio,"http://purl.obolibrary.org/obo/ZP_"
jps,"https://jpsearch.go.jp/term/property#"
uiot,"http://www.w3id.org/urban-iot/core#"
loinc,"https://loinc.org/"
nmr,"https://www.ebi.ac.uk/ols4/ontologies/nmrcv/terms?short_form=NMR:"
mfo,"http://purl.obolibrary.org/obo/ZP_"
ceosp,"https://linkeddata.cultureelerfgoed.nl/def/ceosp/"
interpro,"https://www.ebi.ac.uk/interpro/entry/InterPro/"
sbo,"http://purl.obolibrary.org/obo/SBO_"
rxno,"http://purl.obolibrary.org/obo/ZP_"
sep,"http://purl.obolibrary.org/obo/ZP_"
gecko,"http://purl.obolibrary.org/obo/ZP_"
gramene,"http://www.gramene.org/db/ontology/search?id=GRO:"
tdm,"http://www.w3.org/ns/tdmrep#"
mop,"http://purl.obolibrary.org/obo/MOP_"
gallont,"http://purl.obolibrary.org/obo/GALLONT_"
envo,"http://purl.obolibrary.org/obo/ZP_"
ontohgis,"https://onto.kul.pl/ontohgis/"
clyh,"http://purl.obolibrary.org/obo/ZP_"
mco,"http://purl.obolibrary.org/obo/MCO_"
ontoavida,"http://purl.obolibrary.org/obo/ONTOAVIDA_"
bcnres,"http://datos.bcn.cl/ontologies/bcn-resources#"
sibo,"http://purl.obolibrary.org/obo/ZP_"
credit,"https://credit.niso.org/"
uo,"http://purl.obolibrary.org/obo/UO_"
mro,"http://purl.obolibrary.org/obo/MRO_"
hsapdv,"http://purl.obolibrary.org/obo/HsapDv_"
echem,"https://w3id.org/emmo/domain/electrochemistry#"
clao,"http://purl.obolibrary.org/obo/CLAO_"
msl,"https://w3id.org/msl#"
lib,"http://purl.org/library/"
occupation,"http://nikunj.org/ontology/occupatioin#"
dinto,"http://purl.obolibrary.org/obo/ZP_"
isoprops,"https://w3id.org/isoprops#"
okh,"https://w3id.org/oseg/ont/okh#"
aao,"http://purl.obolibrary.org/obo/AAO_"
pdumdv,"http://purl.obolibrary.org/obo/PdumDv_"
pgdso,"http://purl.obolibrary.org/obo/PGDSO_"
proco,"http://purl.obolibrary.org/obo/PROCO_"
vt,"http://purl.obolibrary.org/obo/VT_"
spo,"https://w3id.org/steel/ProcessOntology/"
mat,"http://purl.obolibrary.org/obo/MAT_"
pwkso,"http://ns.inria.fr/pwkso/"
firebim,"http://w3id.org/firebim#"
apollosv,"http://purl.obolibrary.org/obo/APOLLO_SV_"
ddpheno,"http://purl.obolibrary.org/obo/DDPHENO_"
cwo,"http://kcoyle.net/cwo/"
propreo,"http://purl.obolibrary.org/obo/PROPREO_"
tsdcreq,"https://w3id.org/oseg/ont/tsdc/req#"
ogms,"http://purl.obolibrary.org/obo/OGMS_"
omo,"http://purl.obolibrary.org/obo/OMO_"
clo,"http://purl.obolibrary.org/obo/ZP_"
plana,"http://purl.obolibrary.org/obo/PLANA_"
planp,"http://purl.obolibrary.org/obo/PLANP_"
afpo,"http://purl.obolibrary.org/obo/AfPO_"
cob,"http://purl.obolibrary.org/obo/COB_"
sepio,"http://purl.obolibrary.org/obo/SEPIO_"
dpo,"http://purl.obolibrary.org/obo/FBcv_"
obi,"http://purl.obolibrary.org/obo/OBI_"
fypo,"http://purl.obolibrary.org/obo/FYPO_"
ecp,"http://www.ebu.ch/metadata/ontologies/ebucoreplus#"
hao,"http://purl.obolibrary.org/obo/HAO_"
loggerhead,"http://purl.obolibrary.org/obo/LOGGERHEAD_"
fro,"https://foundry.ai.mil/ontology/nas/fro/"
coswot,"https://w3id.org/coswot/"
tto,"http://purl.obolibrary.org/obo/TTO_"
oplmarket,"http://www.openlinksw.com/ontology/market#"
crcr,"https://credit.niso.org/contributor-roles/"
osh,"https://w3id.org/oseg/ont/osh#"
imr,"http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IMR&id="
capdata,"https://ontologie.capdataculture.fr/v1/owl/#"
fbdv,"http://purl.obolibrary.org/obo/FBdv_"
obom,"https://w3id.org/open-bom/ont/open-bom#"
lrm,"https://iflastandards.info/ns/lrm/lrmoo/"
otrl,"https://w3id.org/oseg/ont/otrl#"
lpto,"http://w3id.org/lpto#"
spa,"https://paul.ti.rw.fau.de/~jo00defe/voc/spa#"
tsdc,"https://w3id.org/oseg/ont/tsdc/core#"
pw,"http://purl.obolibrary.org/obo/PW_"
battery,"https://w3id.org/emmo/domain/battery#"
foaa,"https://kibanshoe.com/"
cred,"https://www.w3.org/2018/credentials#"
dcid,"https://datacommons.org/browser/"
mfoem,"http://purl.obolibrary.org/obo/MFOEM_"
cmf,"http://purl.obolibrary.org/obo/CMF_"
kbmarc,"https://id.kb.se/marc/"
moont,"https://w3id.org/moont/"
eupath,"http://purl.obolibrary.org/obo/EUPATH_"
ypc,"http://www.semanticweb.org/sunsr/ontologies/2024/ypc#"
vbo,"http://purl.obolibrary.org/obo/VBO_"
txpo,"http://purl.obolibrary.org/obo/ZP_"
taxrank,"http://purl.obolibrary.org/obo/TAXRANK_"
fbbt,"http://purl.obolibrary.org/obo/FBbt_"
oplgit,"http://www.openlinksw.com/schemas/github#"
upheno,"http://purl.obolibrary.org/obo/UPHENO_"
schemas,"https://schema.org/"
ohpi,"http://purl.obolibrary.org/obo/OHPI_"
nyon,"https://w3id.org/def/nyon#"
cacax,"http://cacax.fun/"
foodon,"http://purl.obolibrary.org/obo/FOODON_"
stroke,"https://mre.zcu.cz/ontology/stroke.owl#"
bila,"http://4dx.embl.de/4DXpress/reg/all/cview/gene.do?geneID="
xao,"http://purl.obolibrary.org/obo/XAO_"
mpath,"http://purl.obolibrary.org/obo/MPATH_"
ornaseq,"http://purl.obolibrary.org/obo/ORNASEQ_"
ons,"http://purl.obolibrary.org/obo/ONS_"
aix,"https://w3id.org/aix#"
ado,"http://purl.obolibrary.org/obo/ADO_"
adw,"https://animaldiversity.org/accounts/"
lpwcc,"https://linkedpaperswithcode.com/class/"
reloc,"https://w3id.org/reloc#"
mee,"http://www.w3.org/ns/pim/meeting#"
emap,"http://purl.obolibrary.org/obo/EMAP_"
volipi,"http://data.sparna.fr/ontologies/volipi#"
nihss,"https://mre.zcu.cz/ontology/nihss.owl#"
apo,"http://purl.obolibrary.org/obo/APO_"
symp,"http://purl.obolibrary.org/obo/SYMP_"
opmi,"http://purl.obolibrary.org/obo/OPMI_"
ico,"http://purl.obolibrary.org/obo/ICO_"
ckg,"http://example.org/ckg#"
fovt,"http://purl.obolibrary.org/obo/FOVT_"
duo,"http://purl.obolibrary.org/obo/DUO_"
mao,"https://domestic-beethoven.eu/ontology/1.0/music-annotation-ontology.ttl#"
spd,"http://purl.obolibrary.org/obo/SPD_"
vhog,"http://purl.obolibrary.org/obo/VHOG_"
edtf,"http://id.loc.gov/datatypes/EDTFScheme/"
mfomd,"http://purl.obolibrary.org/obo/MFOMD_"
chems,"https://w3id.org/emmo/domain/chemical-substance#"
trans,"http://purl.obolibrary.org/obo/TRANS_"
ogi,"http://purl.obolibrary.org/obo/OGI_"
liph,"https://gallosiciliani.unict.it/ns/lpont#"
idomal,"http://purl.obolibrary.org/obo/IDOMAL_"
pao,"http://purl.obolibrary.org/obo/PAO_"
tops,"http://www.topbraid.org/tops#"
shsh,"http://www.w3.org/ns/shacl-shacl#"
ovae,"http://purl.obolibrary.org/obo/OVAE_"
ypo,"http://purl.obolibrary.org/obo/YPO_"
bspo,"http://purl.obolibrary.org/obo/BSPO_"
iceo,"http://purl.obolibrary.org/obo/ICEO_"
ehdaa2,"http://purl.obolibrary.org/obo/EHDAA2_"
geogeo,"http://purl.obolibrary.org/obo/GEO_"
vo,"http://purl.obolibrary.org/obo/VO_"
aimaix,"https://w3id.org/aimaix#"
geolink,"http://schema.geolink.org/1.0/base/main#"
occo,"http://purl.obolibrary.org/obo/OCCO_"
xco,"http://purl.obolibrary.org/obo/XCO_"
maid,"https://mutual-aid.app/ns/core#"
crmgeo,"http://www.ics.forth.gr/isl/CRMgeo/"
nomen,"http://purl.obolibrary.org/obo/NOMEN_"
eo,"http://purl.obolibrary.org/obo/EO_"
omit,"http://purl.obolibrary.org/obo/OMIT_"
hht,"https://w3id.org/HHT#"
fiaf,"https://ontology.fiafcore.org/"
fbcv,"http://purl.obolibrary.org/obo/FBcv_"
ehda,"http://purl.obolibrary.org/obo/EHDA_"
libeas,"https://w3id.org/libeas#"
mbl,"https://w3id.org/mbl#"
oip,"http://www.exemple.org/ontologia/"
wbls,"http://purl.obolibrary.org/obo/WBls_"
oba,"http://purl.obolibrary.org/obo/OBA_"
oarcs,"http://purl.obolibrary.org/obo/OARCS_"
ecocore,"http://purl.obolibrary.org/obo/ECOCORE_"
musi,"http://i-na-reg.musikinstrumentenbau.eu/ns/musi/"
flu,"http://purl.obolibrary.org/obo/FLU_"
omrse,"http://purl.obolibrary.org/obo/OMRSE_"
cteno,"http://purl.obolibrary.org/obo/CTENO_"
meas,"https://graph.interoptx.org/meas/"
zfs,"http://purl.obolibrary.org/obo/ZFS_"
maxo,"http://purl.obolibrary.org/obo/MAXO_"
ceph,"http://purl.obolibrary.org/obo/CEPH_"
gtm,"https://www.goudatijdmachine.nl/def/"
apmwg,"http://apmwg.ovh/"
sopharm,"http://purl.obolibrary.org/obo/SOPHARM_"
cams,"https://graph.interoptx.org/cams/schema/"
openwemi,"https://ns.dublincore.org/openwemi/"
gno,"http://purl.obolibrary.org/obo/GNO_"
ncro,"http://purl.obolibrary.org/obo/NCRO_"
aeo,"http://purl.obolibrary.org/obo/AEO_"
joe,"http://example.org/joe/"
pcl,"http://purl.obolibrary.org/obo/PCL_"
zea,"http://purl.obolibrary.org/obo/ZEA_"
cmso,"http://purls.helmholtz-metadaten.de/cmso/"
chiro,"http://purl.obolibrary.org/obo/CHIRO_"
ehdaa,"http://purl.obolibrary.org/obo/EHDAA_"
cvdo,"http://purl.obolibrary.org/obo/CVDO_"
ogsf,"http://purl.obolibrary.org/obo/OGSF_"
oostt,"http://purl.obolibrary.org/obo/OOSTT_"
after,"http://rds.posccaesar.org/ontology/plm/ds/"
zeco,"http://purl.obolibrary.org/obo/ZECO_"
tads,"http://purl.obolibrary.org/obo/TADS_"
tahe,"http://purl.obolibrary.org/obo/TAHE_"
psm,"https://paul.ti.rw.fau.de/~jo00defe/ont/psm#"
dron,"http://purl.obolibrary.org/obo/DRON_"
ogg,"http://purl.obolibrary.org/obo/OGG_"
xpo,"http://purl.obolibrary.org/obo/XPO_"
dgaterms,"https://w3id.org/dgaterms#"
dideo,"http://purl.obolibrary.org/obo/DIDEO_"
poro,"http://purl.obolibrary.org/obo/PORO_"
vario,"http://purl.obolibrary.org/obo/VariO_"
aero,"http://purl.obolibrary.org/obo/AERO_"
psn,"https://purl.org/psn/vocab#"
loin,"http://w3id.org/loin#"
colao,"http://purl.obolibrary.org/obo/COLAO_"
miro,"http://purl.obolibrary.org/obo/MIRO_"
tgma,"http://purl.obolibrary.org/obo/TGMA_"
caro,"http://purl.obolibrary.org/obo/CARO_"
iptc4xmpc,"http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/"
amv,"https://w3id.org/amv/"
fix,"http://purl.obolibrary.org/obo/FIX_"
aio,"https://paul.ti.rw.fau.de/~jo00defe/SemWoT/aio#"
t4fs,"http://purl.obolibrary.org/obo/T4FS_"
multionto,"http://purl.org/net/multionto/"
zp,"http://purl.obolibrary.org/obo/ZP_"
termdat,"https://register.ld.admin.ch/termdat/"
hancestro,"http://purl.obolibrary.org/obo/HANCESTRO_"
epio,"http://purl.obolibrary.org/obo/EPIO_"
mmusdv,"http://purl.obolibrary.org/obo/MmusDv_"
psdo,"http://purl.obolibrary.org/obo/PSDO_"
geno,"http://purl.obolibrary.org/obo/GENO_"
phipo,"http://purl.obolibrary.org/obo/PHIPO_"
fobi,"http://purl.obolibrary.org/obo/FOBI_"
lepao,"http://purl.obolibrary.org/obo/LEPAO_"
fideo,"http://purl.obolibrary.org/obo/FIDEO_"
ohmi,"http://purl.obolibrary.org/obo/OHMI_"
miapa,"http://purl.obolibrary.org/obo/MIAPA_"
mirnao,"http://purl.obolibrary.org/obo/MIRNAO_"
mfmo,"http://purl.obolibrary.org/obo/MFMO_"
norse,"https://w3id.org/aksw/norse#"
genepio,"http://purl.obolibrary.org/obo/GENEPIO_"
emobon,"http://www.embrc.eu/emobon/EmoBonOntology#"
edo,"http://semanticweb.org/edo#"
bootstrep,"http://purl.obolibrary.org/obo/BOOTSTREP_"
duodrl,"https://w3id.org/duodrl#"
xlmod,"http://purl.obolibrary.org/obo/XLMOD_"
ino,"http://purl.obolibrary.org/obo/INO_"
zfa,"http://purl.obolibrary.org/obo/ZFA_"
disdriv,"http://purl.obolibrary.org/obo/DISDRIV_"
oplog,"http://www.openlinksw.com/schemas/opengraph#"
whyis,"http://vocab.rpi.edu/whyis/"
emapa,"http://purl.obolibrary.org/obo/EMAPA_"
biomodels,"http://purl.obolibrary.org/obo/KISAO_"
zo,"https://linkeddata.cultureelerfgoed.nl/def/zo/"
ddanat,"http://purl.obolibrary.org/obo/DDANAT_"
obib,"http://purl.obolibrary.org/obo/OBIB_"
lipro,"http://purl.obolibrary.org/obo/LIPRO_"
labo,"http://purl.obolibrary.org/obo/LABO_"
aism,"http://purl.obolibrary.org/obo/AISM_"
hso,"http://purl.obolibrary.org/obo/HSO_"
amphx,"http://purl.obolibrary.org/obo/AMPHX_"
rnao,"http://purl.obolibrary.org/obo/RNAO_"
aro,"http://purl.obolibrary.org/obo/ARO_"
tahh,"http://purl.obolibrary.org/obo/TAHH_"
kvasir,"https://kvasir.discover.ilabt.imec.be/vocab#"
oix,"http://www.exemple.org/ontologia/"
stato,"http://purl.obolibrary.org/obo/STATO_"
hhtchange,"https://w3id.org/HHT/Change#"
flopo,"http://purl.obolibrary.org/obo/FLOPO_"
gaz,"http://purl.obolibrary.org/obo/GAZ_"
wbbt,"http://purl.obolibrary.org/obo/WBbt_"
upa,"http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid="
fbbi,"http://purl.obolibrary.org/obo/FBbi_"
resid,"https://proteininformationresource.org/cgi-bin/resid?id="
micro,"http://purl.obolibrary.org/obo/MICRO_"
obcs,"http://purl.obolibrary.org/obo/OBCS_"
did,"https://w3id.org/dob/id/"
olatdv,"http://purl.obolibrary.org/obo/OlatDv_"
vto,"http://purl.obolibrary.org/obo/VTO_"
rex,"http://purl.obolibrary.org/obo/REX_"
fbsp,"http://purl.obolibrary.org/obo/FBSP_"
pdro,"http://purl.obolibrary.org/obo/PDRO_"
scdo,"http://purl.obolibrary.org/obo/SCDO_"
ecto,"http://purl.obolibrary.org/obo/ECTO_"
ecao,"http://purl.obolibrary.org/obo/ECAO_"
cio,"http://purl.obolibrary.org/obo/CIO_"
mpbv,"http://meta-pfarrerbuch.evangelische-archive.de/vocabulary#"
slso,"http://purl.obolibrary.org/obo/SLSO_"
mcro,"https://www.ebi.ac.uk/ols4/ontologies/mcro/classes?obo_id=MCRO:"
cdno,"http://purl.obolibrary.org/obo/CDNO_"
ato,"http://purl.obolibrary.org/obo/ATO_"
lrmer,"http://iflastandards.info/ns/lrm/lrmer/"
iev,"http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IEV&id="
oplgp,"http://www.openlinksw.com/schemas/googleplus#"
cr,"http://mlcommons.org/croissant/"
airo,"https://w3id.org/airo#"
ngbo,"http://purl.obolibrary.org/obo/NGBO_"
chmo,"http://purl.obolibrary.org/obo/CHMO_"
rdfl,"https://w3id.org/rdf-lens/ontology#"
vsao,"http://purl.obolibrary.org/obo/VSAO_"
omiabis,"http://purl.obolibrary.org/obo/OMIABIS_"
vair,"https://w3id.org/vair#"
dop,"https://w3id.org/dob/voc/prop#"
makeup,"http://example.org/makeup#"
pes,"https://semanticweb.inesctec.pt/ontologies/pes/"
tgc,"http://www.hds.utc.fr/tg#"
bng,"https://w3id.org/dob/voc/epsg-27700#"
nace2,"http://data.europa.eu/ux2/nace2/"
pa,"http://vtw.elsevier.com/data/ns/properties/PromotionalAccess-1/"
dob,"https://w3id.org/dob/voc#"
gsso,"http://purl.obolibrary.org/obo/GSSO_"
cdi,"http://ddialliance.org/Specification/DDI-CDI/1.0/RDF/"
geosrs,"https://w3id.org/geosrs#"
dictionary,"https://standards.buildingsmart.org/DataDictionary/"
rbo,"http://purl.obolibrary.org/obo/RBO_"
myv,"http://www.example.com/myvData/"
nyanneko,"https://nyanneko.com/"
aschema,"https://schema.ld.admin.ch/"
creon,"http://purl.org/creon/"
npc,"https://purl.org/npc#"
ceon,"http://w3id.org/CEON/"
rmle,"https://w3id.org/imec/rml/ns/extensions#"
frac,"http://www.w3.org/ns/lemon/frac#"
cfg,"http://server.topbraidlive.org/web/2009/config#"
womo,"https://w3id.org/womo#"
oplic,"http://www.openlinksw.com/ontology/licenses#"
podio,"http://w3id.org/podio#"
tsdcr,"http://w3id.org/oseg/ont/tsdc/requirements#"
graphql,"https://graphql.org/"
dprod,"https://ekgf.github.io/dprod/"
azo,"https://linkeddata.cultureelerfgoed.nl/def/azo/"
ftr,"https://w3id.org/ftr#"
ror,"https://ror.org/"
encom,"https://semanticweb.inesctec.pt/ontologies/encom/"
jav,"https://www.niso.org/schemas/jav/1.0/"
fair4ml,"https://w3id.org/fair4ml#"
dtkt,"https://data.wikitrek.org/prop/direct/"
jabel54303,"https://softwarehorsepower.com/product/brand24/"
oplmark,"http://www.openlinksw.com/ontology/market#"
aicat,"http://w3id.org/aicat#"
codemeta,"https://codemeta.github.io/terms/"
crdt,"https://vocab.noeldemartin.com/crdt/"
sn,"https://purl.org/supply-network/onto#"
miron,"https://stgermain.ebsi.umontreal.ca/miron/"
fti,"http://franz.com/ns/allegrograph/2.2/textindex/"
aiup,"http://w3id.org/aiup#"
och,"http://w3id.org/def/och/"
luffy,"http://google.com/"
dtk,"https://data.wikitrek.org/entity/"
dblpdocu,"https://dblp.org/rdf/docu/#"
freespins,"https://bohoaff.com/a34fd6fba/"
ce,"https://purl.org/cityexplorer#"
nsprov,"http://www.w3.org/ns/prov#"
jats,"http://jats.nlm.nih.gov/"
qcy,"https://qaecy.com/dev/ont#"
pur,"http://prismstandard.org/namespaces/prismusagerights/2.1/"
debias,"http://data.europa.eu/c4p/data/"
vrti,"https://www.w3id.org/virtual-treasury/ontology#"
picom,"https://personsincontext.org/model#"
fugas,"https://onlyfans.com/sammuwuu/"
qualityze,"https://www.qualityze.com/document-management/"
libro,"https://www.librorum.fr/ontology/"
gsn,"https://w3id.org/OntoGSN/ontology#"
drammar,"http://www.purl.org/drammar#"
lindas,"https://ld.admin.ch/"
oqs,"http://purl.org/nsoluti/oqs#"
passport,"https://nepalpassport.gov.np/"
arco,"https://w3id.org/arco/ontology/arco/"
elsst,"https://elsst.cessda.eu/id/"
ppm,"https://mestergruppen.no/ontologies/projectproductionmanagement/"
vwlpr,"https://vwgroup.leanix.net/Volkswagen/factsheet/Process/"
northwind,"http://demo.openlinksw.com/schemas/Northwind/"
scdt,"http://w3id.org/awslabs/neptune/SPARQL-CDTs/"
turism,"http://turism.com/"
onlyfans,"https://cutt.ly/3ry8LMcK/"
tgfm,"http://purl.org/terminology-guide-for-move/testvocab/"
datmm,"http://id.nlm.nih.gov/datmm/"
icd,"http://purl.bioontology.org/ontology/ICD9CM/"
dbpde,"http://de.dbpedia.org/property/"
bambara,"http://example.org/bambara#"
itandrec,"http://www.semanticweb.org/pedri/ontologies/2025/3/IntelligentTourismAndRecommendations#"
ishi,"https://w3id.org/ishikawa-diagram-ontology#"
ssv,"https://w3id.org/ssv/"
unesco,"http://vocabularies.unesco.org/thesaurus/"
whu,"http://bdi.whu.edu.cn/"
checks,"https://data.digichecks.eu/def/"
vwlap,"https://vwgroup.leanix.net/Volkswagen/factsheet/Application/"
bam,"http://vtw.elsevier.com/data/voc/ns/bam-vtw-1/"
ubbont,"http://data.ub.uib.no/ontology/"
iirds,"http://iirds.tekom.de/iirds#"
eliasempre,"https://eliasempresas.com/"
vwgw,"https://group-wiki.wob.vw.vwg/wikis/pages/viewpage.action?pageId="
ris,"http://research-info-systems.com/schema/ris/"
npo,"https://w3id.org/NPO/ontology/"
vm,"http://visual-meaning.com/rdf/"
vwlid,"https://vwgroup.leanix.net/Volkswagen/external/leanixId/"
ncl,"https://w3id.org/NCL/ontology/"
regcomp,"https://regulacomp.unige.ch/ns/regcomp#"
fwo,"https://w3id.org/foodwaste/ontology#"
pmw,"http://ponymusic.wiki/ns#"
vwdms,"https://vwdmsweb.wob.vw.vwg/groupdms/?docbase=vwdms&locateId="
dsio,"https://ptb.de/si#"
genex,"http://purl.org/genex#"
dqa,"https://w3id.org/DQA#"