iqvoc 4.13.0 → 4.14.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -1
- data/Gemfile +13 -16
- data/Gemfile.lock +415 -326
- data/README.md +7 -6
- data/app/aides/inline_data_helper.rb +3 -3
- data/app/aides/skos_exporter.rb +1 -1
- data/app/assets/javascripts/framework.js +3 -3
- data/app/assets/javascripts/iqvoc/hover_menues.js +14 -0
- data/app/assets/javascripts/iqvoc/iqvoc.js +46 -61
- data/app/assets/javascripts/iqvoc/manifest.js +2 -1
- data/app/assets/javascripts/iqvoc/treeview.js +2 -1
- data/app/assets/stylesheets/iqvoc/_manifest.scss +1 -0
- data/app/assets/stylesheets/iqvoc/_search_results.scss +14 -0
- data/app/assets/stylesheets/iqvoc/components/_entity_select.scss +5 -8
- data/app/assets/stylesheets/iqvoc/components/_simplete.scss +2 -1
- data/app/assets/stylesheets/iqvoc/components/_treeview.scss +1 -0
- data/app/assets/stylesheets/iqvoc/hacks/_hacks.scss +1 -1
- data/app/controllers/collections/versions_controller.rb +13 -48
- data/app/controllers/collections_controller.rb +16 -9
- data/app/controllers/concepts/alphabetical_controller.rb +2 -2
- data/app/controllers/concepts/hierarchical_controller.rb +9 -13
- data/app/controllers/concepts/scheme_controller.rb +2 -1
- data/app/controllers/concepts/versions_controller.rb +14 -49
- data/app/controllers/concepts_controller.rb +28 -18
- data/app/controllers/concepts_movement_controller.rb +1 -1
- data/app/controllers/dashboard_controller.rb +5 -5
- data/app/controllers/hierarchy_controller.rb +1 -1
- data/app/controllers/imports_controller.rb +9 -6
- data/app/controllers/reverse_matches_controller.rb +2 -4
- data/app/controllers/search_results_controller.rb +16 -19
- data/app/controllers/triplestore_sync_controller.rb +2 -2
- data/app/controllers/users_controller.rb +1 -1
- data/app/helpers/application_helper.rb +6 -11
- data/app/helpers/concepts_helper.rb +3 -3
- data/app/helpers/link_helper.rb +10 -6
- data/app/helpers/navigation_helper.rb +24 -13
- data/app/helpers/rdf_helper.rb +9 -5
- data/app/jobs/reverse_match_job.rb +8 -4
- data/app/models/ability.rb +7 -7
- data/app/models/abstract_user.rb +1 -1
- data/app/models/collection/base.rb +17 -8
- data/app/models/concept/base.rb +25 -6
- data/app/models/concept/relation/base.rb +1 -1
- data/app/models/concept/relation/reverse_relation_extension.rb +9 -5
- data/app/models/concept/skos/base.rb +0 -10
- data/app/models/concept/validations.rb +6 -4
- data/app/models/concerns/search_extension.rb +0 -17
- data/app/models/concerns/versioning.rb +2 -32
- data/app/models/dataset/adaptors/iqvoc/alphabetical_search_adaptor.rb +2 -2
- data/app/models/dataset/adaptors/iqvoc/http_adaptor.rb +3 -3
- data/app/models/dataset/adaptors/iqvoc/label_adaptor.rb +1 -1
- data/app/models/dataset/adaptors/iqvoc/search_adaptor.rb +3 -3
- data/app/models/export.rb +1 -1
- data/app/models/label/base.rb +5 -5
- data/app/models/labeling/skos/base.rb +14 -10
- data/app/models/note/base.rb +1 -1
- data/app/models/user.rb +2 -0
- data/app/models/user_session.rb +0 -3
- data/app/services/rdf_sync_service.rb +3 -3
- data/app/uploaders/rdf_uploader.rb +1 -1
- data/app/views/collections/_data.html.erb +2 -2
- data/app/views/collections/show_unpublished.html.erb +3 -11
- data/app/views/concepts/alphabetical/_search_result.html.erb +3 -1
- data/app/views/concepts/hierarchical/_treeview.html.erb +4 -1
- data/app/views/concepts/notifications/_referenced_concepts.html.erb +0 -1
- data/app/views/concepts/scheme/show.html.erb +1 -3
- data/app/views/concepts/show_published.html.erb +2 -0
- data/app/views/concepts/show_unpublished.html.erb +5 -11
- data/app/views/dashboard/_table.html.erb +0 -8
- data/app/views/errors/server_error.html.erb +1 -2
- data/app/views/pages/version.html.erb +1 -1
- data/app/views/partials/collection/_member.html.erb +1 -1
- data/app/views/partials/concept/_edit_link_base.html.erb +2 -2
- data/app/views/partials/concept/relation/_base.html.erb +4 -4
- data/app/views/partials/concept/relation/_edit_base.html.erb +13 -10
- data/app/views/partials/concept/relation/skos/_narrower.html.erb +1 -1
- data/app/views/partials/concept/relation/skos/broader/_mono.html.erb +2 -2
- data/app/views/partials/concept/relation/skos/broader/_poly.html.erb +2 -2
- data/app/views/partials/labeling/skos/_base.html.erb +1 -1
- data/app/views/partials/labeling/skos/_edit_base.html.erb +2 -1
- data/app/views/partials/labeling/skos/_search_result.html.erb +3 -0
- data/app/views/partials/match/_panel.html.erb +2 -2
- data/app/views/partials/notation/_base.html.erb +1 -1
- data/app/views/search_results/_detailed_search.html.erb +27 -0
- data/app/views/search_results/_form.html.erb +21 -9
- data/app/views/search_results/index.html.erb +4 -4
- data/app/views/search_results/sections/_change_note.html.erb +28 -25
- data/app/views/search_results/sections/_collection.html.erb +5 -5
- data/app/views/search_results/sections/_datasets.html.erb +8 -20
- data/app/views/search_results/sections/_klass.html.erb +7 -9
- data/app/views/search_results/sections/_languages.html.erb +4 -14
- data/app/views/search_results/sections/_mode.html.erb +8 -10
- data/app/views/search_results/sections/_options.html.erb +8 -0
- data/app/views/search_results/sections/_terms.html.erb +13 -10
- data/app/views/search_results/sections/_type.html.erb +13 -13
- data/config/application.rb +15 -10
- data/config/boot.rb +3 -3
- data/config/cable.yml +1 -1
- data/config/database.yml +17 -16
- data/config/database.yml.postgresql +1 -1
- data/config/engine.rb +1 -1
- data/config/environment.rb +1 -1
- data/config/initializers/active_record.rb +2 -0
- data/config/initializers/backtrace_silencers.rb +4 -3
- data/config/initializers/content_security_policy.rb +21 -21
- data/config/initializers/filter_parameter_logging.rb +6 -2
- data/config/initializers/inflections.rb +4 -4
- data/config/initializers/iqvoc.rb +1 -0
- data/config/initializers/permissions_policy.rb +11 -0
- data/config/initializers/wrap_parameters.rb +3 -3
- data/config/initializers/zeitwerk.rb +6 -0
- data/config/locales/activerecord.de.yml +2 -2
- data/config/locales/de.yml +18 -19
- data/config/locales/en.yml +16 -17
- data/config/locales/pt.yml +0 -7
- data/config/puma.rb +10 -4
- data/config/routes.rb +0 -4
- data/db/migrate/20220107114201_add_fk_constraint_to_active_storage_attachments_for_blob_id.active_storage.rb +10 -0
- data/db/migrate/20231012135837_remove_locked_by.rb +6 -0
- data/db/schema.rb +36 -39
- data/iqvoc.gemspec +14 -13
- data/lib/iqvoc/configuration/concept.rb +2 -0
- data/lib/iqvoc/configuration/core.rb +13 -2
- data/lib/iqvoc/configuration/instance_configuration.rb +3 -3
- data/lib/iqvoc/environments/development.rb +23 -9
- data/lib/iqvoc/environments/production.rb +21 -19
- data/lib/iqvoc/environments/test.rb +15 -8
- data/lib/iqvoc/version.rb +1 -1
- data/lib/tasks/sync.rake +1 -1
- data/test/authentication.rb +1 -1
- data/test/controllers/concepts_movement_controller_test.rb +0 -2
- data/test/controllers/hierarchy_test.rb +4 -4
- data/test/controllers/reverse_match_test.rb +1 -1
- data/test/integration/client_edit_concept_test.rb +1 -1
- data/test/integration/collection_browsing_test.rb +45 -0
- data/test/integration/collection_circularity_test.rb +3 -3
- data/test/integration/concept_collection_assignment_test.rb +7 -7
- data/test/integration/create_concept_test.rb +15 -0
- data/test/integration/reverse_match_job_test.rb +39 -7
- data/test/integration/search_test.rb +12 -12
- data/test/integration/version_page_test.rb +26 -0
- data/test/integration_test_helper.rb +2 -2
- data/test/models/concept_test.rb +37 -0
- data/test/models/deep_cloning_test.rb +9 -7
- data/test/models/rdf_sync_test.rb +3 -3
- data/test/models/zeitwerk_compliance_test.rb +7 -0
- data/test/test_helper.rb +3 -0
- metadata +69 -222
- data/app/views/search_results/sections/_note.html.erb +0 -6
- data/config/initializers/new_framework_defaults_5_1.rb +0 -14
- data/config/initializers/sqlite3_booleans.rb +0 -1
- data/public/422.html +0 -58
- data/public/assets/fonts/FiraMono-Regular-0b6138c5b386dc9125473fd851926f29.ttf +0 -0
- data/public/assets/fonts/FiraMono-Regular-690950e8d89c92cba41eeeb13f1de93e.woff +0 -0
- data/public/assets/fonts/FiraMono-Regular-98f97ed2dbf9d94d4fa5df048434b88d.eot +0 -0
- data/public/assets/fonts/FiraMono-Regular.eot +0 -0
- data/public/assets/fonts/FiraMono-Regular.ttf +0 -0
- data/public/assets/fonts/FiraMono-Regular.woff +0 -0
- data/public/assets/fonts/FiraSans-Bold-0de5f536bd0dc370449c0c67a49a6fe7.eot +0 -0
- data/public/assets/fonts/FiraSans-Bold-25037ef8d155e38b5df0c242a4c6cf2d.ttf +0 -0
- data/public/assets/fonts/FiraSans-Bold-494219a9639084eb9528ff47f79fcda1.woff +0 -0
- data/public/assets/fonts/FiraSans-Bold.eot +0 -0
- data/public/assets/fonts/FiraSans-Bold.ttf +0 -0
- data/public/assets/fonts/FiraSans-Bold.woff +0 -0
- data/public/assets/fonts/FiraSans-BoldItalic-5b3b812df9e1cb2b1f34baad65a2bdfb.ttf +0 -0
- data/public/assets/fonts/FiraSans-BoldItalic-90b8087c48feff2e828f658c49de5399.eot +0 -0
- data/public/assets/fonts/FiraSans-BoldItalic-b10e46158d50bf9b78968112acf87310.woff +0 -0
- data/public/assets/fonts/FiraSans-BoldItalic.eot +0 -0
- data/public/assets/fonts/FiraSans-BoldItalic.ttf +0 -0
- data/public/assets/fonts/FiraSans-BoldItalic.woff +0 -0
- data/public/assets/fonts/FiraSans-Book-659d252627051e785260ba445da8930f.woff +0 -0
- data/public/assets/fonts/FiraSans-Book-abc65ceb7bfaed729bff7a9d1367b7d4.eot +0 -0
- data/public/assets/fonts/FiraSans-Book-f0410501d5ecc5fe66bcdbc02b482c81.ttf +0 -0
- data/public/assets/fonts/FiraSans-Book.eot +0 -0
- data/public/assets/fonts/FiraSans-Book.ttf +0 -0
- data/public/assets/fonts/FiraSans-Book.woff +0 -0
- data/public/assets/fonts/FiraSans-ExtraLight-140f15ee97cb2099ff01c2b57dcd1a24.woff +0 -0
- data/public/assets/fonts/FiraSans-ExtraLight-28e5c2679df66406ebd117fbdded6753.eot +0 -0
- data/public/assets/fonts/FiraSans-ExtraLight-c15de70ebceffce178cbd2e82aa2c373.ttf +0 -0
- data/public/assets/fonts/FiraSans-ExtraLight.eot +0 -0
- data/public/assets/fonts/FiraSans-ExtraLight.ttf +0 -0
- data/public/assets/fonts/FiraSans-ExtraLight.woff +0 -0
- data/public/assets/fonts/FiraSans-Italic-ac4cb18fe14a7c90f29cdd2ce499ba59.woff +0 -0
- data/public/assets/fonts/FiraSans-Italic-bdea00fee0da5ca9176061e00c26a0da.eot +0 -0
- data/public/assets/fonts/FiraSans-Italic-e7e76a0ee170fd29b5d8100753eff569.ttf +0 -0
- data/public/assets/fonts/FiraSans-Italic.eot +0 -0
- data/public/assets/fonts/FiraSans-Italic.ttf +0 -0
- data/public/assets/fonts/FiraSans-Italic.woff +0 -0
- data/public/assets/fonts/FiraSans-Light-20adaf630b690c3e3184daaeae585f22.woff +0 -0
- data/public/assets/fonts/FiraSans-Light-3689e18b38d335ec0c43823adb6a2984.eot +0 -0
- data/public/assets/fonts/FiraSans-Light-55b04531e7a9ecdf58090d70b94b68e2.ttf +0 -0
- data/public/assets/fonts/FiraSans-Light-SC-098407a72b7ad46f7c2480d7ac11baf2.eot +0 -0
- data/public/assets/fonts/FiraSans-Light-SC-82763fe2ce9e6b897556c6f3c2aceb29.woff2 +0 -0
- data/public/assets/fonts/FiraSans-Light-SC-c73985985f0501c1845a5185b180fe6b.woff +0 -0
- data/public/assets/fonts/FiraSans-Light-SC-c9563f48d9cccd91f07e46801c27130f.ttf +0 -0
- data/public/assets/fonts/FiraSans-Light-SC.eot +0 -0
- data/public/assets/fonts/FiraSans-Light-SC.ttf +0 -0
- data/public/assets/fonts/FiraSans-Light-SC.woff +0 -0
- data/public/assets/fonts/FiraSans-Light-SC.woff2 +0 -0
- data/public/assets/fonts/FiraSans-Light.eot +0 -0
- data/public/assets/fonts/FiraSans-Light.ttf +0 -0
- data/public/assets/fonts/FiraSans-Light.woff +0 -0
- data/public/assets/fonts/FiraSans-Medium-082fab59048189168006bf2e914ba8b7.woff +0 -0
- data/public/assets/fonts/FiraSans-Medium-11706edfe8651c355b413bd24b4b5e10.eot +0 -0
- data/public/assets/fonts/FiraSans-Medium-3a0dacdeaba1b4c054f2d6cb5061965d.ttf +0 -0
- data/public/assets/fonts/FiraSans-Medium.eot +0 -0
- data/public/assets/fonts/FiraSans-Medium.ttf +0 -0
- data/public/assets/fonts/FiraSans-Medium.woff +0 -0
- data/public/assets/fonts/FiraSans-MediumItalic-6c8a2646d72641226527d574a8485b66.woff +0 -0
- data/public/assets/fonts/FiraSans-MediumItalic-b81e92794a6878b6c578d97b3ad5e6d7.ttf +0 -0
- data/public/assets/fonts/FiraSans-MediumItalic-eae7f4a3c4db9fe83025909ebfae5ad9.eot +0 -0
- data/public/assets/fonts/FiraSans-MediumItalic.eot +0 -0
- data/public/assets/fonts/FiraSans-MediumItalic.ttf +0 -0
- data/public/assets/fonts/FiraSans-MediumItalic.woff +0 -0
- data/public/assets/fonts/FiraSans-Regular-537188a19aeebdd74a92e114af7a02cb.ttf +0 -0
- data/public/assets/fonts/FiraSans-Regular-5d6a923de9be80ff5c2995cc03d93127.woff +0 -0
- data/public/assets/fonts/FiraSans-Regular-db689e5fea21ed4b7890811151968dc6.eot +0 -0
- data/public/assets/fonts/FiraSans-Regular.eot +0 -0
- data/public/assets/fonts/FiraSans-Regular.ttf +0 -0
- data/public/assets/fonts/FiraSans-Regular.woff +0 -0
- data/public/assets/fonts/FiraSans-UltraLight-3baefce4c224a0f0b26cdafe37dfa55d.eot +0 -0
- data/public/assets/fonts/FiraSans-UltraLight-e3909a352b87f853bb464836adfd602a.ttf +0 -0
- data/public/assets/fonts/FiraSans-UltraLight-f7289beeaa2353caf487553ee8b8ef03.woff +0 -0
- data/public/assets/fonts/FiraSans-UltraLight.eot +0 -0
- data/public/assets/fonts/FiraSans-UltraLight.ttf +0 -0
- data/public/assets/fonts/FiraSans-UltraLight.woff +0 -0
- data/public/assets/fonts/FontAwesome.otf +0 -0
- data/public/assets/fonts/fontawesome-webfont.eot +0 -0
- data/public/assets/fonts/fontawesome-webfont.svg +0 -2671
- data/public/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/public/assets/fonts/fontawesome-webfont.woff +0 -0
- data/public/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/public/assets/images/ajax-loader-30d8e72bfdae694b1938658e1b087df0.gif +0 -0
- data/public/assets/images/ajax-loader.gif +0 -0
- data/public/assets/images/iqvoc_logo-165f17a46cf0a1bf9464db9d136fb843.svg +0 -41
- data/public/assets/images/iqvoc_logo.svg +0 -41
- data/public/assets/images/treeview-default-line-5e3c0e0c48f48c23c45aef7b72c739c0.gif +0 -0
- data/public/assets/images/treeview-default-line.gif +0 -0
- data/public/assets/javascripts/bootstrap.bundle.min-68b3c2f1c1f636f947fff1229d3ffbf5.js +0 -7
- data/public/assets/javascripts/bootstrap.bundle.min.js +0 -42
- data/public/assets/javascripts/jquery-17e41799d7fba03a313ca6b67d8a0954.js +0 -26
- data/public/assets/javascripts/jquery-d52dc3a9171f1fc89dd0f8e35e42c9d2.js +0 -26
- data/public/assets/javascripts/jquery.js +0 -10875
- data/public/assets/javascripts/manifest-7708201f7c24d5186cd075c3317f9b70.js +0 -7311
- data/public/assets/javascripts/manifest-89894d9f630fa57378a0c28e2a3d9ea9.js +0 -7325
- data/public/assets/javascripts/manifest.js +0 -5660
- data/public/assets/manifest.json +0 -1
- data/public/assets/stylesheets/manifest-893c7de3dee9ed1295bc1b5b4c1f0c34.css +0 -13
- data/public/assets/stylesheets/manifest-94b7be92a9b1cfeafea4ea71af910324.css +0 -13
- data/public/assets/stylesheets/manifest-e576edf92efaaad86b15b565fa473d0b.css +0 -7
- data/public/assets/stylesheets/manifest.css +0 -14314
- data/public/export/12750.nt +0 -28
- data/public/export/17385303752427181100115432751692126521.nt +0 -28
- data/public/export/181196830007276319343907883650755121680.nt +0 -28
- data/public/export/194669028845730209313058462140064732442.nt +0 -28
- data/public/export/21988.nt +0 -28
- data/public/export/230655012044692637365356891394989635995.nt +0 -28
- data/public/export/233590502327750705645106563554497694497.nt +0 -28
- data/public/export/245884359537367641918690456207690070316.nt +0 -28
- data/public/export/250386066048669747259363837063223215204.nt +0 -28
- data/public/export/256041066575224861739818511470898486442.nt +0 -28
- data/public/export/287138383024694264939471429022965897163.nt +0 -28
- data/public/export/31892.nt +0 -28
- data/public/export/333774437366008328346740356666975078086.nt +0 -28
- data/public/export/34639390376251419382098415225771775708.nt +0 -28
- data/public/export/4098.nt +0 -28
- data/public/export/47070.nt +0 -28
- data/public/export/49947.nt +0 -28
- data/public/export/5793.nt +0 -28
- data/public/export/64089124325772410079516909502763866955.nt +0 -28
- data/public/export/64718.nt +0 -28
- data/public/export/71200590939430584664474292378126383577.nt +0 -28
- data/public/export/81965533953024918329855744567916239964.nt +0 -28
- data/public/favicon.ico +0 -0
- data/public/robots.txt +0 -5
- data/public/uploads/import/213b73161661ebbad4e5ee3f543ae617.nt +0 -259
- data/public/uploads/import/22ad4d7419b7914c7319c46a66839f77.nt +0 -259
- data/public/uploads/import/22b78e01b9b5876851578cf9a8373c07.nt +0 -259
- data/public/uploads/import/2ab75781f8141010699dd272f681b245.nt +0 -259
- data/public/uploads/import/4c7fe47a2c21a681fd8f0eb3af0ebf19.nt +0 -259
- data/public/uploads/import/5265d7cb194f017c592a68914ecf8d9f.nt +0 -259
- data/public/uploads/import/5cb5414a66e4ae5dbe05eb763c367bd1.nt +0 -259
- data/public/uploads/import/6b042e00c2e2abf9241d2ece3e67ed27.nt +0 -259
- data/public/uploads/import/749edd3918db157202b00f89418b87d1.nt +0 -259
- data/public/uploads/import/7aeb9d76b78ba67674caa53a96e1caa0.nt +0 -259
- data/public/uploads/import/7b7fc425b8926e586ca10d0f1385aa4e.nt +0 -259
- data/public/uploads/import/8319d34702375718b20e72a6af71c503.nt +0 -259
- data/public/uploads/import/9ec48f5aaece8d2a8770439e34199b19.nt +0 -259
- data/public/uploads/import/a22750632c35587057285920142c2db8.nt +0 -259
- data/public/uploads/import/a6d9eeb5e76ce0032614c8142a33c90b.nt +0 -259
- data/public/uploads/import/a7ec826e32e80d1fc61f5e89f7442199.nt +0 -259
- data/public/uploads/import/af2ac8cb84a194da9871ea701f915a25.nt +0 -259
- data/public/uploads/import/b50c67ef8cb51fa12812ac2601faaa75.nt +0 -259
- data/public/uploads/import/b66560ac9cc4aecd50f82d4fcec8bde4.nt +0 -259
- data/public/uploads/import/c1a12245a41d9105585fb48a0b5244ab.nt +0 -259
- data/public/uploads/import/c4b23750b9f72a7f93bcd979a9afded3.nt +0 -259
- data/public/uploads/import/d1edac76626a35a6e72a592c98e97b1a.nt +0 -259
- data/public/uploads/import/eca92dbeff4aec30e3072103bb5f565f.nt +0 -259
- data/public/uploads/import/f7996f8826062cd8dcfc8fac70e830b9.nt +0 -259
- data/public/uploads/tmp/1609926599-187261935008931-0002-5418/hobbies.nt +0 -259
- data/public/uploads/tmp/1610450700-516890595554445-0002-2685/hobbies.nt +0 -259
- data/public/uploads/tmp/1610450844-597126333235543-0001-0714/hobbies.nt +0 -259
- data/public/uploads/tmp/1611054155-443031323634581-0001-9192/hobbies.nt +0 -259
- data/public/uploads/tmp/1611225485-767301590714814-0002-6904/hobbies.nt +0 -259
- data/public/uploads/tmp/1611225661-919900076415463-0002-0657/hobbies.nt +0 -259
- data/public/uploads/tmp/1611227389-36557097935032-0002-4613/hobbies.nt +0 -259
- data/public/uploads/tmp/1611585376-822293462114758-0001-9752/hobbies.nt +0 -259
- data/public/uploads/tmp/1611585431-703460698560673-0002-7522/hobbies.nt +0 -259
- data/public/uploads/tmp/1611586554-483369300394995-0002-0872/hobbies.nt +0 -259
- data/public/uploads/tmp/1619777137-609890333749067-0002-0264/hobbies.nt +0 -259
- data/public/uploads/tmp/1627291050-163284787457980-0001-2701/hobbies.nt +0 -259
- data/public/uploads/tmp/1627291589-952446089963663-0002-3171/hobbies.nt +0 -259
- data/public/uploads/tmp/1627291819-788250283200541-0002-2503/hobbies.nt +0 -259
- data/public/uploads/tmp/1627292534-103362378955855-0001-7089/hobbies.nt +0 -259
- data/public/uploads/tmp/1627293799-506613299368066-0002-1247/hobbies.nt +0 -259
- data/public/uploads/tmp/1627293863-868842521367397-0001-4656/hobbies.nt +0 -259
- data/public/uploads/tmp/1636993960-338364327912413-0002-8049/hobbies.nt +0 -259
- data/public/uploads/tmp/1641550181-434480636271400-0002-7928/hobbies.nt +0 -259
- data/public/uploads/tmp/1641550416-6444469569098-0002-2156/hobbies.nt +0 -259
- data/public/uploads/tmp/1641550691-848542458162760-0002-6815/hobbies.nt +0 -259
- data/public/uploads/tmp/1641550716-647719127292471-0002-9954/hobbies.nt +0 -259
- data/public/uploads/tmp/1641551058-78248622355227-0002-3663/hobbies.nt +0 -259
- data/public/uploads/tmp/1641551220-744894908610606-0001-3879/hobbies.nt +0 -259
data/public/export/5793.nt
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
<http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
2
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
3
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
|
4
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
|
5
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
|
6
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
|
7
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
|
8
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
|
9
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
|
10
|
-
<http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
11
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
12
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
|
13
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
|
14
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
|
15
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
16
|
-
<http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
17
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
18
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
|
19
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
|
20
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
21
|
-
<http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
22
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
23
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
|
24
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
|
25
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
|
26
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
|
27
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
28
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
|
@@ -1,28 +0,0 @@
|
|
1
|
-
<http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
2
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
3
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
|
4
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
|
5
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
|
6
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
|
7
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
|
8
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
|
9
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
|
10
|
-
<http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
11
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
12
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
|
13
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
|
14
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
|
15
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
16
|
-
<http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
17
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
18
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
|
19
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
|
20
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
21
|
-
<http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
22
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
23
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
|
24
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
|
25
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
|
26
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
|
27
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
28
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
|
data/public/export/64718.nt
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
<http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
2
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
3
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
|
4
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
|
5
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
|
6
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
|
7
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
|
8
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
|
9
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
|
10
|
-
<http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
11
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
12
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
|
13
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
|
14
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
|
15
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
16
|
-
<http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
17
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
18
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
|
19
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
|
20
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
21
|
-
<http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
22
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
23
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
|
24
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
|
25
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
|
26
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
|
27
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
28
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
|
@@ -1,28 +0,0 @@
|
|
1
|
-
<http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
2
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
3
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
|
4
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
|
5
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
|
6
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
|
7
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
|
8
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
|
9
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
|
10
|
-
<http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
11
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
12
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
|
13
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
|
14
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
|
15
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
16
|
-
<http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
17
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
18
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
|
19
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
|
20
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
21
|
-
<http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
22
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
23
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
|
24
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
|
25
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
|
26
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
|
27
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
28
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
|
@@ -1,28 +0,0 @@
|
|
1
|
-
<http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
2
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
3
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
|
4
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
|
5
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
|
6
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
|
7
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
|
8
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
|
9
|
-
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
|
10
|
-
<http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
11
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
12
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
|
13
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
|
14
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
|
15
|
-
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
16
|
-
<http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
17
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
18
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
|
19
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
|
20
|
-
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
21
|
-
<http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
22
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
23
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
|
24
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
|
25
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
|
26
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
|
27
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
28
|
-
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
|
data/public/favicon.ico
DELETED
File without changes
|
data/public/robots.txt
DELETED
@@ -1,259 +0,0 @@
|
|
1
|
-
<http://hobbies.com/indoors> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Collection> .
|
2
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#prefLabel> "indoors"@en .
|
3
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Collection> .
|
4
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#prefLabel> "outdoors"@en .
|
5
|
-
<http://hobbies.com/achievement_hobbies> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
6
|
-
<http://hobbies.com/achievement_hobbies> <http://www.w3.org/2004/02/skos/core#prefLabel> "Achievement hobbies"@en .
|
7
|
-
<http://hobbies.com/achievement_hobbies> <http://www.w3.org/2004/02/skos/core#topConceptOf> <http://hobbies.com/scheme> .
|
8
|
-
<http://hobbies.com/gardening> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
9
|
-
<http://hobbies.com/gardening> <http://www.w3.org/2004/02/skos/core#prefLabel> "Gardening"@en .
|
10
|
-
<http://hobbies.com/gardening> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
11
|
-
<http://hobbies.com/model_building> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
12
|
-
<http://hobbies.com/model_building> <http://www.w3.org/2004/02/skos/core#prefLabel> "Model building"@en .
|
13
|
-
<http://hobbies.com/model_building> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
14
|
-
<http://hobbies.com/model_rocketry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
15
|
-
<http://hobbies.com/model_rocketry> <http://www.w3.org/2004/02/skos/core#prefLabel> "Model rocketry"@en .
|
16
|
-
<http://hobbies.com/model_rocketry> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/model_building> .
|
17
|
-
<http://hobbies.com/radio-controlled_modeling> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
18
|
-
<http://hobbies.com/radio-controlled_modeling> <http://www.w3.org/2004/02/skos/core#prefLabel> "Radio-controlled modeling"@en .
|
19
|
-
<http://hobbies.com/radio-controlled_modeling> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/model_building> .
|
20
|
-
<http://hobbies.com/scale_modeling> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
21
|
-
<http://hobbies.com/scale_modeling> <http://www.w3.org/2004/02/skos/core#prefLabel> "Scale modeling"@en .
|
22
|
-
<http://hobbies.com/scale_modeling> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/model_building> .
|
23
|
-
<http://hobbies.com/photography> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
24
|
-
<http://hobbies.com/photography> <http://www.w3.org/2004/02/skos/core#prefLabel> "Photography"@en .
|
25
|
-
<http://hobbies.com/photography> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
26
|
-
<http://hobbies.com/audiophilia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
27
|
-
<http://hobbies.com/audiophilia> <http://www.w3.org/2004/02/skos/core#prefLabel> "Audiophilia"@en .
|
28
|
-
<http://hobbies.com/audiophilia> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
29
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/audiophilia> .
|
30
|
-
<http://hobbies.com/baton_twirling> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
31
|
-
<http://hobbies.com/baton_twirling> <http://www.w3.org/2004/02/skos/core#prefLabel> "Baton twirling"@en .
|
32
|
-
<http://hobbies.com/baton_twirling> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
33
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/baton_twirling> .
|
34
|
-
<http://hobbies.com/bonsai> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
35
|
-
<http://hobbies.com/bonsai> <http://www.w3.org/2004/02/skos/core#prefLabel> "Bonsai"@en .
|
36
|
-
<http://hobbies.com/bonsai> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
37
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/bonsai> .
|
38
|
-
<http://hobbies.com/computer_programming> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
39
|
-
<http://hobbies.com/computer_programming> <http://www.w3.org/2004/02/skos/core#prefLabel> "Computer programming"@en .
|
40
|
-
<http://hobbies.com/computer_programming> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
41
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/computer_programming> .
|
42
|
-
<http://hobbies.com/dance> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
43
|
-
<http://hobbies.com/dance> <http://www.w3.org/2004/02/skos/core#prefLabel> "Dance"@en .
|
44
|
-
<http://hobbies.com/dance> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
45
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/dance> .
|
46
|
-
<http://hobbies.com/amateur_radio> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
47
|
-
<http://hobbies.com/amateur_radio> <http://www.w3.org/2004/02/skos/core#prefLabel> "Amateur radio"@en .
|
48
|
-
<http://hobbies.com/amateur_radio> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
49
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/amateur_radio> .
|
50
|
-
<http://hobbies.com/home_automation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
51
|
-
<http://hobbies.com/home_automation> <http://www.w3.org/2004/02/skos/core#prefLabel> "Home automation"@en .
|
52
|
-
<http://hobbies.com/home_automation> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
53
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/home_automation> .
|
54
|
-
<http://hobbies.com/knapping> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
55
|
-
<http://hobbies.com/knapping> <http://www.w3.org/2004/02/skos/core#prefLabel> "Knapping"@en .
|
56
|
-
<http://hobbies.com/knapping> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
57
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/knapping> .
|
58
|
-
<http://hobbies.com/lapidary> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
59
|
-
<http://hobbies.com/lapidary> <http://www.w3.org/2004/02/skos/core#prefLabel> "Lapidary"@en .
|
60
|
-
<http://hobbies.com/lapidary> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
61
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/lapidary> .
|
62
|
-
<http://hobbies.com/locksport> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
63
|
-
<http://hobbies.com/locksport> <http://www.w3.org/2004/02/skos/core#prefLabel> "Locksport"@en .
|
64
|
-
<http://hobbies.com/locksport> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
65
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/locksport> .
|
66
|
-
<http://hobbies.com/scrapbooking> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
67
|
-
<http://hobbies.com/scrapbooking> <http://www.w3.org/2004/02/skos/core#prefLabel> "Scrapbooking"@en .
|
68
|
-
<http://hobbies.com/scrapbooking> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
69
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/scrapbooking> .
|
70
|
-
<http://hobbies.com/air_sports> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
71
|
-
<http://hobbies.com/air_sports> <http://www.w3.org/2004/02/skos/core#prefLabel> "Air sports"@en .
|
72
|
-
<http://hobbies.com/air_sports> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
73
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/air_sports> .
|
74
|
-
<http://hobbies.com/board_sports> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
75
|
-
<http://hobbies.com/board_sports> <http://www.w3.org/2004/02/skos/core#prefLabel> "Board sports"@en .
|
76
|
-
<http://hobbies.com/board_sports> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
77
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/board_sports> .
|
78
|
-
<http://hobbies.com/kayaking> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
79
|
-
<http://hobbies.com/kayaking> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kayaking"@en .
|
80
|
-
<http://hobbies.com/kayaking> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
81
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/kayaking> .
|
82
|
-
<http://hobbies.com/kitesurfing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
83
|
-
<http://hobbies.com/kitesurfing> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kitesurfing"@en .
|
84
|
-
<http://hobbies.com/kitesurfing> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
85
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/kitesurfing> .
|
86
|
-
<http://hobbies.com/mountainbiking> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
87
|
-
<http://hobbies.com/mountainbiking> <http://www.w3.org/2004/02/skos/core#prefLabel> "Mountainbiking"@en .
|
88
|
-
<http://hobbies.com/mountainbiking> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
89
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/mountainbiking> .
|
90
|
-
<http://hobbies.com/scuba_diving> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
91
|
-
<http://hobbies.com/scuba_diving> <http://www.w3.org/2004/02/skos/core#prefLabel> "Scuba diving"@en .
|
92
|
-
<http://hobbies.com/scuba_diving> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
93
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/scuba_diving> .
|
94
|
-
<http://hobbies.com/snowmobiling> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
95
|
-
<http://hobbies.com/snowmobiling> <http://www.w3.org/2004/02/skos/core#prefLabel> "Snowmobiling"@en .
|
96
|
-
<http://hobbies.com/snowmobiling> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/achievement_hobbies> .
|
97
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/snowmobiling> .
|
98
|
-
<http://hobbies.com/collection_hobbies> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
99
|
-
<http://hobbies.com/collection_hobbies> <http://www.w3.org/2004/02/skos/core#prefLabel> "Collection hobbies"@en .
|
100
|
-
<http://hobbies.com/collection_hobbies> <http://www.w3.org/2004/02/skos/core#topConceptOf> <http://hobbies.com/scheme> .
|
101
|
-
<http://hobbies.com/coin_collecting> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
102
|
-
<http://hobbies.com/coin_collecting> <http://www.w3.org/2004/02/skos/core#prefLabel> "Coin collecting"@en .
|
103
|
-
<http://hobbies.com/coin_collecting> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/collection_hobbies> .
|
104
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/coin_collecting> .
|
105
|
-
<http://hobbies.com/stamp_collecting> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
106
|
-
<http://hobbies.com/stamp_collecting> <http://www.w3.org/2004/02/skos/core#prefLabel> "Stamp collecting"@en .
|
107
|
-
<http://hobbies.com/stamp_collecting> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/collection_hobbies> .
|
108
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/stamp_collecting> .
|
109
|
-
<http://hobbies.com/antiquities> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
110
|
-
<http://hobbies.com/antiquities> <http://www.w3.org/2004/02/skos/core#prefLabel> "Antiquities"@en .
|
111
|
-
<http://hobbies.com/antiquities> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/collection_hobbies> .
|
112
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/antiquities> .
|
113
|
-
<http://hobbies.com/auto_audiophilia> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
114
|
-
<http://hobbies.com/auto_audiophilia> <http://www.w3.org/2004/02/skos/core#prefLabel> "Auto audiophilia"@en .
|
115
|
-
<http://hobbies.com/auto_audiophilia> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/collection_hobbies> .
|
116
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/auto_audiophilia> .
|
117
|
-
<http://hobbies.com/fossil_collecting> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
118
|
-
<http://hobbies.com/fossil_collecting> <http://www.w3.org/2004/02/skos/core#prefLabel> "Fossil collecting"@en .
|
119
|
-
<http://hobbies.com/fossil_collecting> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/collection_hobbies> .
|
120
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/fossil_collecting> .
|
121
|
-
<http://hobbies.com/metal_detecting> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
122
|
-
<http://hobbies.com/metal_detecting> <http://www.w3.org/2004/02/skos/core#prefLabel> "Metal detecting"@en .
|
123
|
-
<http://hobbies.com/metal_detecting> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/collection_hobbies> .
|
124
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/metal_detecting> .
|
125
|
-
<http://hobbies.com/mineral_collecting> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
126
|
-
<http://hobbies.com/mineral_collecting> <http://www.w3.org/2004/02/skos/core#prefLabel> "Mineral collecting"@en .
|
127
|
-
<http://hobbies.com/mineral_collecting> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/collection_hobbies> .
|
128
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/mineral_collecting> .
|
129
|
-
<http://hobbies.com/competition_hobbies> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
130
|
-
<http://hobbies.com/competition_hobbies> <http://www.w3.org/2004/02/skos/core#prefLabel> "Competition hobbies"@en .
|
131
|
-
<http://hobbies.com/competition_hobbies> <http://www.w3.org/2004/02/skos/core#topConceptOf> <http://hobbies.com/scheme> .
|
132
|
-
<http://hobbies.com/billiards> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
133
|
-
<http://hobbies.com/billiards> <http://www.w3.org/2004/02/skos/core#prefLabel> "Billiards"@en .
|
134
|
-
<http://hobbies.com/billiards> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
135
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/billiards> .
|
136
|
-
<http://hobbies.com/bowling> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
137
|
-
<http://hobbies.com/bowling> <http://www.w3.org/2004/02/skos/core#prefLabel> "Bowling"@en .
|
138
|
-
<http://hobbies.com/bowling> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
139
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/bowling> .
|
140
|
-
<http://hobbies.com/boxing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
141
|
-
<http://hobbies.com/boxing> <http://www.w3.org/2004/02/skos/core#prefLabel> "Boxing"@en .
|
142
|
-
<http://hobbies.com/boxing> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
143
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/boxing> .
|
144
|
-
<http://hobbies.com/chess> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
145
|
-
<http://hobbies.com/chess> <http://www.w3.org/2004/02/skos/core#prefLabel> "Chess"@en .
|
146
|
-
<http://hobbies.com/chess> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
147
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/chess> .
|
148
|
-
<http://hobbies.com/darts> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
149
|
-
<http://hobbies.com/darts> <http://www.w3.org/2004/02/skos/core#prefLabel> "Darts"@en .
|
150
|
-
<http://hobbies.com/darts> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
151
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/darts> .
|
152
|
-
<http://hobbies.com/fencing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
153
|
-
<http://hobbies.com/fencing> <http://www.w3.org/2004/02/skos/core#prefLabel> "Fencing"@en .
|
154
|
-
<http://hobbies.com/fencing> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
155
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/fencing> .
|
156
|
-
<http://hobbies.com/role-playing_games> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
157
|
-
<http://hobbies.com/role-playing_games> <http://www.w3.org/2004/02/skos/core#prefLabel> "Role-playing games"@en .
|
158
|
-
<http://hobbies.com/role-playing_games> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
159
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/role-playing_games> .
|
160
|
-
<http://hobbies.com/table_football> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
161
|
-
<http://hobbies.com/table_football> <http://www.w3.org/2004/02/skos/core#prefLabel> "Table football"@en .
|
162
|
-
<http://hobbies.com/table_football> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
163
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/table_football> .
|
164
|
-
<http://hobbies.com/handball> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
165
|
-
<http://hobbies.com/handball> <http://www.w3.org/2004/02/skos/core#prefLabel> "Handball"@en .
|
166
|
-
<http://hobbies.com/handball> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
167
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/handball> .
|
168
|
-
<http://hobbies.com/martial_arts> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
169
|
-
<http://hobbies.com/martial_arts> <http://www.w3.org/2004/02/skos/core#prefLabel> "Martial arts"@en .
|
170
|
-
<http://hobbies.com/martial_arts> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
171
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/martial_arts> .
|
172
|
-
<http://hobbies.com/video_gaming> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
173
|
-
<http://hobbies.com/video_gaming> <http://www.w3.org/2004/02/skos/core#prefLabel> "Video gaming"@en .
|
174
|
-
<http://hobbies.com/video_gaming> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
175
|
-
<http://hobbies.com/indoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/video_gaming> .
|
176
|
-
<http://hobbies.com/airsoft> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
177
|
-
<http://hobbies.com/airsoft> <http://www.w3.org/2004/02/skos/core#prefLabel> "Airsoft"@en .
|
178
|
-
<http://hobbies.com/airsoft> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
179
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/airsoft> .
|
180
|
-
<http://hobbies.com/archery> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
181
|
-
<http://hobbies.com/archery> <http://www.w3.org/2004/02/skos/core#prefLabel> "Archery"@en .
|
182
|
-
<http://hobbies.com/archery> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
183
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/archery> .
|
184
|
-
<http://hobbies.com/auto_racing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
185
|
-
<http://hobbies.com/auto_racing> <http://www.w3.org/2004/02/skos/core#prefLabel> "Auto racing"@en .
|
186
|
-
<http://hobbies.com/auto_racing> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
187
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/auto_racing> .
|
188
|
-
<http://hobbies.com/badminton> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
189
|
-
<http://hobbies.com/badminton> <http://www.w3.org/2004/02/skos/core#prefLabel> "Badminton"@en .
|
190
|
-
<http://hobbies.com/badminton> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
191
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/badminton> .
|
192
|
-
<http://hobbies.com/baseball> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
193
|
-
<http://hobbies.com/baseball> <http://www.w3.org/2004/02/skos/core#prefLabel> "Baseball"@en .
|
194
|
-
<http://hobbies.com/baseball> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
195
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/baseball> .
|
196
|
-
<http://hobbies.com/basketball> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
197
|
-
<http://hobbies.com/basketball> <http://www.w3.org/2004/02/skos/core#prefLabel> "Basketball"@en .
|
198
|
-
<http://hobbies.com/basketball> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
199
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/basketball> .
|
200
|
-
<http://hobbies.com/climbing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
201
|
-
<http://hobbies.com/climbing> <http://www.w3.org/2004/02/skos/core#prefLabel> "Climbing"@en .
|
202
|
-
<http://hobbies.com/climbing> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
203
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/climbing> .
|
204
|
-
<http://hobbies.com/cricket> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
205
|
-
<http://hobbies.com/cricket> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cricket"@en .
|
206
|
-
<http://hobbies.com/cricket> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
207
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/cricket> .
|
208
|
-
<http://hobbies.com/cycling> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
209
|
-
<http://hobbies.com/cycling> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cycling"@en .
|
210
|
-
<http://hobbies.com/cycling> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
211
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/cycling> .
|
212
|
-
<http://hobbies.com/disc_golf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
213
|
-
<http://hobbies.com/disc_golf> <http://www.w3.org/2004/02/skos/core#prefLabel> "Disc golf"@en .
|
214
|
-
<http://hobbies.com/disc_golf> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
215
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/disc_golf> .
|
216
|
-
<http://hobbies.com/equestrianism> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
217
|
-
<http://hobbies.com/equestrianism> <http://www.w3.org/2004/02/skos/core#prefLabel> "Equestrianism"@en .
|
218
|
-
<http://hobbies.com/equestrianism> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
219
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/equestrianism> .
|
220
|
-
<http://hobbies.com/figure_skating> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
221
|
-
<http://hobbies.com/figure_skating> <http://www.w3.org/2004/02/skos/core#prefLabel> "Figure skating"@en .
|
222
|
-
<http://hobbies.com/figure_skating> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
223
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/figure_skating> .
|
224
|
-
<http://hobbies.com/fishing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
225
|
-
<http://hobbies.com/fishing> <http://www.w3.org/2004/02/skos/core#prefLabel> "Fishing"@en .
|
226
|
-
<http://hobbies.com/fishing> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
227
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/fishing> .
|
228
|
-
<http://hobbies.com/golfing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
229
|
-
<http://hobbies.com/golfing> <http://www.w3.org/2004/02/skos/core#prefLabel> "Golfing"@en .
|
230
|
-
<http://hobbies.com/golfing> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
231
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/golfing> .
|
232
|
-
<http://hobbies.com/gymnastics> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
233
|
-
<http://hobbies.com/gymnastics> <http://www.w3.org/2004/02/skos/core#prefLabel> "Gymnastics"@en .
|
234
|
-
<http://hobbies.com/gymnastics> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
235
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/gymnastics> .
|
236
|
-
<http://hobbies.com/ice_hockey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
237
|
-
<http://hobbies.com/ice_hockey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Ice hockey"@en .
|
238
|
-
<http://hobbies.com/ice_hockey> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
239
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/ice_hockey> .
|
240
|
-
<http://hobbies.com/kart_racing> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
241
|
-
<http://hobbies.com/kart_racing> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kart racing"@en .
|
242
|
-
<http://hobbies.com/kart_racing> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
243
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/kart_racing> .
|
244
|
-
<http://hobbies.com/paintball> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
245
|
-
<http://hobbies.com/paintball> <http://www.w3.org/2004/02/skos/core#prefLabel> "Paintball"@en .
|
246
|
-
<http://hobbies.com/paintball> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
247
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/paintball> .
|
248
|
-
<http://hobbies.com/rugby_league> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
249
|
-
<http://hobbies.com/rugby_league> <http://www.w3.org/2004/02/skos/core#prefLabel> "Rugby league"@en .
|
250
|
-
<http://hobbies.com/rugby_league> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
251
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/rugby_league> .
|
252
|
-
<http://hobbies.com/swimming> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
253
|
-
<http://hobbies.com/swimming> <http://www.w3.org/2004/02/skos/core#prefLabel> "Swimming"@en .
|
254
|
-
<http://hobbies.com/swimming> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
255
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/swimming> .
|
256
|
-
<http://hobbies.com/tennis> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
257
|
-
<http://hobbies.com/tennis> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tennis"@en .
|
258
|
-
<http://hobbies.com/tennis> <http://www.w3.org/2004/02/skos/core#broader> <http://hobbies.com/competition_hobbies> .
|
259
|
-
<http://hobbies.com/outdoors> <http://www.w3.org/2004/02/skos/core#member> <http://hobbies.com/tennis> .
|