diff --git a/CHANGELOG.md b/CHANGELOG.md index 7650282ccbc7e844e6c7f7adf735f205ab035863..9cfa22036de9343d359119fc7cf585f52835fa82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # jupyter-all +## v4 + +* Added support for RDF and semantic tools with Jupyter-RDFify +* Added support for C/C++ with xeus-cling + ## v3 * Got IHaskell syntax highlighting working. diff --git a/Dockerfile b/Dockerfile index b65c63999b42c21a4b13e774a8c43d2f03b55015..e5732aa283f388b05b83021342d2afcce2580edc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ FROM continuumio/miniconda3:4.12.0 LABEL maintainer="Jeffrey Phillips Freeman <the@jeffreyfreeman.me>" LABEL Description="Jupyter lab for various languages" -LABEL Version="3" +LABEL Version="4" ENV HOME=/root ENV NOTEBOOK_DIR=/jupyter/notebooks @@ -96,6 +96,10 @@ RUN mkdir -p $NOTEBOOK_DIR \ COPY .docker/matplotlibrc $MATPLOTLIBRC/matplotlibrc COPY .docker/jupyter_notebook_config.py $JUPYTER_DIR/jupyter_notebook_config.py +# Install semantic tools: https://github.com/SemWebNotebooks/Jupyter-RDFify +RUN python -m pip install jupyter-rdfify \ + && conda install -c conda-forge graphviz + # Install Javascript ENV NODE_VERSION ${node_version} ENV YARN_VERSION 1.22.19 @@ -336,6 +340,11 @@ RUN mkdir -p /root/.local/share/jupyter/kernels/haskell &&\ COPY .docker/kernel.json /root/.local/share/jupyter/kernels/haskell/kernel.json +## Install xeus-cling kernel +RUN mamba create -y -n cling xeus-cling -c conda-forge + +## Clean up the system + RUN mamba clean --all \ && apt-get autoremove \ && apt-get clean \ diff --git a/examples/rdfify.ipynb b/examples/rdfify.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..68697643ea99fff97fe7283e207aad46c31393ed --- /dev/null +++ b/examples/rdfify.ipynb @@ -0,0 +1,1753 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "id": "2e0ad827-175f-4b8d-b6d6-6abe7b334427", + "metadata": {}, + "outputs": [ + { + "data": { + "application/javascript": [ + "\n", + " if (typeof IPython !== \"undefined\") {\n", + " IPython.CodeCell.options_default.highlight_modes['application/sparql-query'] = {'reg':[/^%%rdf sparql/]};\n", + " IPython.CodeCell.options_default.highlight_modes['text/turtle'] = {'reg':[/^%%rdf turtle/, /^%%rdf shex/]};\n", + " IPython.CodeCell.options_default.highlight_modes['application/ld+json'] = {'reg':[/^%%rdf json-ld/]};\n", + " IPython.notebook.get_cells().map(function(cell){ if (cell.cell_type == 'code'){ cell.auto_highlight(); } });\n", + " }\n", + " " + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%load_ext jupyter-rdfify" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "466284f7-19d4-4383-b172-8016e86cbbc9", + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n", + "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n", + " \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n", + "<!-- Generated by graphviz version 8.0.3 (20230418.1244)\n", + " -->\n", + "<!-- Pages: 1 -->\n", + "<svg width=\"144pt\" height=\"131pt\"\n", + " viewBox=\"0.00 0.00 144.49 131.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n", + "<g id=\"graph0\" class=\"graph\" transform=\"scale(1 1) rotate(0) translate(4 127)\">\n", + "<polygon fill=\"white\" stroke=\"none\" points=\"-4,4 -4,-127 140.49,-127 140.49,4 -4,4\"/>\n", + "<!-- 0 -->\n", + "<g id=\"node1\" class=\"node\">\n", + "<title>0</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"68.24\" cy=\"-18\" rx=\"57.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"68.24\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\">:Awesome</text>\n", + "</g>\n", + "<!-- 1 -->\n", + "<g id=\"node2\" class=\"node\">\n", + "<title>1</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"68.24\" cy=\"-105\" rx=\"68.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"68.24\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">:JupyterRDF</text>\n", + "</g>\n", + "<!-- 1->0 -->\n", + "<g id=\"edge1\" class=\"edge\">\n", + "<title>1->0</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M68.24,-86.8C68.24,-75.47 68.24,-60.36 68.24,-47.29\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"71.74,-47.47 68.24,-37.47 64.74,-47.47 71.74,-47.47\"/>\n", + "<text text-anchor=\"middle\" x=\"76.74\" y=\"-57.8\" font-family=\"Times,serif\" font-size=\"14.00\">:is</text>\n", + "</g>\n", + "</g>\n", + "</svg>\n" + ], + "text/plain": [ + "<graphviz.graphs.Digraph at 0x7f7564457ee0>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%rdf turtle\n", + "@prefix : <http://example.org/> .\n", + ":JupyterRDF :is :Awesome ." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "844b8af0-b3d0-4a17-b0c9-78ed76ff1c57", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "usage: %rdf [-h] [--verbose] [--return-store]\n", + " {turtle,n3,json-ld,xml,sparql,shex,graph} ...\n", + "\n", + "positional arguments:\n", + " {turtle,n3,json-ld,xml,sparql,shex,graph}\n", + " RDF modules\n", + " turtle Turtle module\n", + " n3 Notation 3 module\n", + " json-ld JSON-LD module\n", + " xml XML+RDF module\n", + " sparql SPARQL module\n", + " shex ShEx module\n", + " graph Graph management module\n", + "\n", + "options:\n", + " -h, --help show this help message and exit\n", + " --verbose, -v Enable verbose output\n", + " --return-store, -r Returns a copy of all present elements (graphs,\n", + " schemas, etc.)\n", + "\n" + ] + } + ], + "source": [ + "%rdf --help" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "c101af4b-0694-425e-a0a1-6276c49a3582", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "usage: %rdf turtle [-h] [--serialize {turtle,json-ld,xml,n3}]\n", + " [--display {graph,table,raw,none}] [--label LABEL]\n", + " [--prefix] [--entail {rdfs,owl,rdfs+owl}]\n", + "\n", + "options:\n", + " -h, --help show this help message and exit\n", + " --serialize {turtle,json-ld,xml,n3}, -s {turtle,json-ld,xml,n3}\n", + " Format for serializing when display is set to raw.\n", + " --display {graph,table,raw,none}, -d {graph,table,raw,none}\n", + " How output is displayed\n", + " --label LABEL, -l LABEL\n", + " Store graph locally with this label\n", + " --prefix, -p Define a prefix which gets prepend to every query.\n", + " Useful for PREFIX declarations\n", + " --entail {rdfs,owl,rdfs+owl}, -e {rdfs,owl,rdfs+owl}\n", + " Uses a brute force implementation of the finite\n", + " version of RDFS semantics or OWL 2 RL. Uses owlrl\n", + " python package.\n", + "\n" + ] + } + ], + "source": [ + "%rdf turtle --help" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "7cef4a10-8665-4250-931e-244c718a3b55", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[\n", + " {\n", + " \"@id\": \"http://example.org/JupyterRDF\",\n", + " \"http://example.org/is\": [\n", + " {\n", + " \"@id\": \"http://example.org/Awesome\"\n", + " }\n", + " ]\n", + " }\n", + "]" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%rdf turtle --display raw --serialize json-ld\n", + "@prefix : <http://example.org/> .\n", + ":JupyterRDF :is :Awesome ." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "8374562c-56d6-4f4a-b032-8c085973e75d", + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n", + "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n", + " \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n", + "<!-- Generated by graphviz version 8.0.3 (20230418.1244)\n", + " -->\n", + "<!-- Pages: 1 -->\n", + "<svg width=\"144pt\" height=\"131pt\"\n", + " viewBox=\"0.00 0.00 144.49 131.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n", + "<g id=\"graph0\" class=\"graph\" transform=\"scale(1 1) rotate(0) translate(4 127)\">\n", + "<polygon fill=\"white\" stroke=\"none\" points=\"-4,4 -4,-127 140.49,-127 140.49,4 -4,4\"/>\n", + "<!-- 0 -->\n", + "<g id=\"node1\" class=\"node\">\n", + "<title>0</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"68.24\" cy=\"-18\" rx=\"57.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"68.24\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\">:Awesome</text>\n", + "</g>\n", + "<!-- 1 -->\n", + "<g id=\"node2\" class=\"node\">\n", + "<title>1</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"68.24\" cy=\"-105\" rx=\"68.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"68.24\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">:JupyterRDF</text>\n", + "</g>\n", + "<!-- 1->0 -->\n", + "<g id=\"edge1\" class=\"edge\">\n", + "<title>1->0</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M68.24,-86.8C68.24,-75.47 68.24,-60.36 68.24,-47.29\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"71.74,-47.47 68.24,-37.47 64.74,-47.47 71.74,-47.47\"/>\n", + "<text text-anchor=\"middle\" x=\"76.74\" y=\"-57.8\" font-family=\"Times,serif\" font-size=\"14.00\">:is</text>\n", + "</g>\n", + "</g>\n", + "</svg>\n" + ], + "text/plain": [ + "<graphviz.graphs.Digraph at 0x7f7576167640>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%rdf turtle --label awesome_graph\n", + "@prefix : <http://example.org/> .\n", + ":JupyterRDF :is :Awesome ." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "3a3a4737-2d83-4c26-a85f-d21ce4c04117", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "<table><tr><th>?x</th></tr><tr><td>http://example.org/JupyterRDF</td></tr></table>" + ], + "text/plain": [ + "<IPython.core.display.HTML object>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%rdf sparql --local awesome_graph\n", + "PREFIX : <http://example.org/>\n", + "SELECT ?x WHERE {\n", + " ?x :is :Awesome\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "7a00ee5d-d22b-4397-85af-9d19ea453b8d", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ShEx: Shape successfully parsed.\n" + ] + } + ], + "source": [ + "%%rdf shex parse --label awesome_schema\n", + "PREFIX : <http://example.org/>\n", + ":AwesomeShape {\n", + " :is [:Awesome]\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "d7ada122-6735-4678-b73e-ce8c5ae36553", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "ShEx: Evaluating shape 'http://example.org/AwesomeShape' on node 'http://example.org/JupyterRDF'\n", + "PASSED!\n" + ] + } + ], + "source": [ + "%rdf shex validate --label awesome_schema --graph awesome_graph --start http://example.org/AwesomeShape --focus http://example.org/JupyterRDF" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "32e48059-337e-4a6e-a699-4255dcbe3019", + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n", + "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n", + " \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n", + "<!-- Generated by graphviz version 8.0.3 (20230418.1244)\n", + " -->\n", + "<!-- Pages: 1 -->\n", + "<svg width=\"144pt\" height=\"131pt\"\n", + " viewBox=\"0.00 0.00 144.49 131.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n", + "<g id=\"graph0\" class=\"graph\" transform=\"scale(1 1) rotate(0) translate(4 127)\">\n", + "<polygon fill=\"white\" stroke=\"none\" points=\"-4,4 -4,-127 140.49,-127 140.49,4 -4,4\"/>\n", + "<!-- 0 -->\n", + "<g id=\"node1\" class=\"node\">\n", + "<title>0</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"68.24\" cy=\"-18\" rx=\"57.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"68.24\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\">:Awesome</text>\n", + "</g>\n", + "<!-- 1 -->\n", + "<g id=\"node2\" class=\"node\">\n", + "<title>1</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"68.24\" cy=\"-105\" rx=\"68.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"68.24\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">:JupyterRDF</text>\n", + "</g>\n", + "<!-- 1->0 -->\n", + "<g id=\"edge1\" class=\"edge\">\n", + "<title>1->0</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M68.24,-86.8C68.24,-75.47 68.24,-60.36 68.24,-47.29\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"71.74,-47.47 68.24,-37.47 64.74,-47.47 71.74,-47.47\"/>\n", + "<text text-anchor=\"middle\" x=\"76.74\" y=\"-57.8\" font-family=\"Times,serif\" font-size=\"14.00\">:is</text>\n", + "</g>\n", + "</g>\n", + "</svg>\n" + ], + "text/plain": [ + "<graphviz.graphs.Digraph at 0x7f754fd021d0>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%rdf graph draw --label awesome_graph" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "c0d4d358-c38f-45c3-82f6-e2d8f85053d1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Graphman: Graph labelled 'awesome_graph' has been entailed using the RDFS regime.\n" + ] + } + ], + "source": [ + "%rdf graph entail-rdfs --label awesome_graph" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "abafa97b-a9d1-42c0-b6e7-5dad0a1664f9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Graphman: Graph labelled 'awesome_graph' has been entailed using the OWL-RL regime.\n" + ] + } + ], + "source": [ + "%rdf graph entail-owl --label awesome_graph" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "e01809b6-e7e1-48dd-be53-51ef635cf024", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Graphman: Graph labelled 'awesome_graph' has been entailed using the RDFS regime and then the OWL-RL regime.\n" + ] + } + ], + "source": [ + "%rdf graph entail-rdfs+owl --label awesome_graph" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "3243e62b-3182-48fb-9a87-5914299669a0", + "metadata": {}, + "outputs": [ + { + "data": { + "image/svg+xml": [ + "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n", + "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n", + " \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n", + "<!-- Generated by graphviz version 8.0.3 (20230418.1244)\n", + " -->\n", + "<!-- Pages: 1 -->\n", + "<svg width=\"16201pt\" height=\"218pt\"\n", + " viewBox=\"0.00 0.00 16200.94 218.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n", + "<g id=\"graph0\" class=\"graph\" transform=\"scale(1 1) rotate(0) translate(4 214)\">\n", + "<polygon fill=\"white\" stroke=\"none\" points=\"-4,4 -4,-214 16196.94,-214 16196.94,4 -4,4\"/>\n", + "<!-- 0 -->\n", + "<g id=\"node1\" class=\"node\">\n", + "<title>0</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"79.29\" cy=\"-192\" rx=\"79.09\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"79.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:XMLLiteral</text>\n", + "</g>\n", + "<!-- 0->0 -->\n", + "<g id=\"edge94\" class=\"edge\">\n", + "<title>0->0</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M150.99,-199.87C165.88,-199.04 176.59,-196.42 176.59,-192 176.59,-188.76 170.81,-186.48 161.85,-185.17\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"162.28,-181.6 151.99,-184.13 161.62,-188.57 162.28,-181.6\"/>\n", + "<text text-anchor=\"middle\" x=\"219.09\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 21 -->\n", + "<g id=\"node22\" class=\"node\">\n", + "<title>21</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"4752.29\" cy=\"-105\" rx=\"74.99\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"4752.29\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:Datatype</text>\n", + "</g>\n", + "<!-- 0->21 -->\n", + "<g id=\"edge17\" class=\"edge\">\n", + "<title>0->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M147.6,-182.7C248.72,-170.84 444.3,-149.54 611.29,-141 1029.12,-119.64 4110.64,-108.19 4666.5,-106.28\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.24,-109.78 4676.23,-106.25 4666.21,-102.78 4666.24,-109.78\"/>\n", + "<text text-anchor=\"middle\" x=\"640.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 1 -->\n", + "<g id=\"node2\" class=\"node\">\n", + "<title>1</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"9806.29\" cy=\"-18\" rx=\"54.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"9806.29\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:Class</text>\n", + "</g>\n", + "<!-- 1->1 -->\n", + "<g id=\"edge6\" class=\"edge\">\n", + "<title>1->1</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9855.83,-26.08C9868.95,-25.62 9878.89,-22.93 9878.89,-18 9878.89,-14.57 9874.08,-12.23 9866.75,-10.96\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9867.12,-7.38 9856.83,-9.92 9866.45,-14.35 9867.12,-7.38\"/>\n", + "<text text-anchor=\"middle\" x=\"9921.39\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 2 -->\n", + "<g id=\"node3\" class=\"node\">\n", + "<title>2</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"351.29\" cy=\"-192\" rx=\"71.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"351.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:NCName</text>\n", + "</g>\n", + "<!-- 2->2 -->\n", + "<g id=\"edge97\" class=\"edge\">\n", + "<title>2->2</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M416.05,-199.94C430.36,-199.19 440.79,-196.55 440.79,-192 440.79,-188.7 435.28,-186.4 426.79,-185.1\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"427.34,-181.54 417.05,-184.06 426.67,-188.51 427.34,-181.54\"/>\n", + "<text text-anchor=\"middle\" x=\"483.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 2->21 -->\n", + "<g id=\"edge82\" class=\"edge\">\n", + "<title>2->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M414.36,-183.2C512.51,-171.45 707.83,-149.69 874.29,-141 1648.54,-100.57 4168.22,-104.56 4666.3,-105.77\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4665.99,-109.27 4676,-105.79 4666.01,-102.27 4665.99,-109.27\"/>\n", + "<text text-anchor=\"middle\" x=\"903.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 3 -->\n", + "<g id=\"node4\" class=\"node\">\n", + "<title>3</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"594.29\" cy=\"-192\" rx=\"50.89\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"594.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:time</text>\n", + "</g>\n", + "<!-- 3->3 -->\n", + "<g id=\"edge64\" class=\"edge\">\n", + "<title>3->3</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M640.2,-200.12C653.09,-199.76 662.99,-197.06 662.99,-192 662.99,-188.45 658.1,-186.05 650.71,-184.82\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"651.47,-181.29 641.2,-183.88 650.85,-188.26 651.47,-181.29\"/>\n", + "<text text-anchor=\"middle\" x=\"705.49\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 3->21 -->\n", + "<g id=\"edge73\" class=\"edge\">\n", + "<title>3->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M642.08,-185.3C738.04,-174.16 961.09,-149.82 1149.29,-141 1865.57,-107.42 4188.5,-105.91 4666,-105.97\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4665.94,-109.47 4675.94,-105.97 4665.94,-102.47 4665.94,-109.47\"/>\n", + "<text text-anchor=\"middle\" x=\"1178.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 4 -->\n", + "<g id=\"node5\" class=\"node\">\n", + "<title>4</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"843.29\" cy=\"-192\" rx=\"77.19\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"843.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:hexBinary</text>\n", + "</g>\n", + "<!-- 4->4 -->\n", + "<g id=\"edge108\" class=\"edge\">\n", + "<title>4->4</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M913.56,-199.87C928.15,-199.04 938.64,-196.42 938.64,-192 938.64,-188.79 933.1,-186.53 924.47,-185.21\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"924.85,-181.63 914.56,-184.13 924.16,-188.6 924.85,-181.63\"/>\n", + "<text text-anchor=\"middle\" x=\"981.14\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 4->21 -->\n", + "<g id=\"edge107\" class=\"edge\">\n", + "<title>4->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M912.24,-183.53C1023.43,-171.87 1249.28,-149.77 1441.29,-141 2096.37,-111.08 4213.55,-106.69 4666.5,-106.09\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.21,-109.59 4676.21,-106.08 4666.2,-102.59 4666.21,-109.59\"/>\n", + "<text text-anchor=\"middle\" x=\"1470.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 5 -->\n", + "<g id=\"node6\" class=\"node\">\n", + "<title>5</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"1145.29\" cy=\"-192\" rx=\"103.18\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"1145.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:dateTimeStamp</text>\n", + "</g>\n", + "<!-- 5->5 -->\n", + "<g id=\"edge32\" class=\"edge\">\n", + "<title>5->5</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M1239.67,-199.6C1255.61,-198.55 1266.63,-196.01 1266.63,-192 1266.63,-188.99 1260.43,-186.81 1250.61,-185.47\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"1250.96,-181.89 1240.67,-184.4 1250.28,-188.86 1250.96,-181.89\"/>\n", + "<text text-anchor=\"middle\" x=\"1309.13\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 5->21 -->\n", + "<g id=\"edge72\" class=\"edge\">\n", + "<title>5->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M1229.6,-181.37C1338.58,-169.39 1534.3,-149.49 1702.29,-141 2302.35,-110.67 4235.04,-106.61 4666.39,-106.08\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.21,-109.58 4676.21,-106.07 4666.2,-102.58 4666.21,-109.58\"/>\n", + "<text text-anchor=\"middle\" x=\"1731.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 6 -->\n", + "<g id=\"node7\" class=\"node\">\n", + "<title>6</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"1433.29\" cy=\"-192\" rx=\"63.89\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"1433.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:integer</text>\n", + "</g>\n", + "<!-- 6->6 -->\n", + "<g id=\"edge13\" class=\"edge\">\n", + "<title>6->6</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M1491.3,-199.99C1504.93,-199.34 1514.99,-196.67 1514.99,-192 1514.99,-188.68 1509.9,-186.37 1502.07,-185.08\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"1502.6,-181.51 1492.3,-184.01 1501.91,-188.48 1502.6,-181.51\"/>\n", + "<text text-anchor=\"middle\" x=\"1557.49\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 6->21 -->\n", + "<g id=\"edge25\" class=\"edge\">\n", + "<title>6->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M1491.3,-184.03C1589.79,-172.56 1796.11,-150.05 1971.29,-141 2514.85,-112.92 4257.81,-107.15 4666.13,-106.18\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4665.97,-109.67 4675.96,-106.15 4665.95,-102.67 4665.97,-109.67\"/>\n", + "<text text-anchor=\"middle\" x=\"2000.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 7 -->\n", + "<g id=\"node8\" class=\"node\">\n", + "<title>7</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"10396.29\" cy=\"-192\" rx=\"100.98\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"10396.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:subPropertyOf</text>\n", + "</g>\n", + "<!-- 7->7 -->\n", + "<g id=\"edge19\" class=\"edge\">\n", + "<title>7->7</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M10496.78,-194.29C10507.87,-193.85 10515.03,-193.09 10515.03,-192 10515.03,-191.32 10512.24,-190.77 10507.43,-190.34\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"10507.97,-186.81 10497.78,-189.71 10507.56,-193.79 10507.97,-186.81\"/>\n", + "<text text-anchor=\"middle\" x=\"10557.53\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 7->7 -->\n", + "<g id=\"edge89\" class=\"edge\">\n", + "<title>7->7</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M10493.49,-197.3C10546.99,-197.97 10600.03,-196.2 10600.03,-192 10600.03,-188.09 10554,-186.29 10504.44,-186.6\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"10504.46,-183.11 10494.49,-186.7 10504.52,-190.11 10504.46,-183.11\"/>\n", + "<text text-anchor=\"middle\" x=\"10684.03\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:equivalentProperty</text>\n", + "</g>\n", + "<!-- 7->7 -->\n", + "<g id=\"edge112\" class=\"edge\">\n", + "<title>7->7</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M10490.91,-198.61C10603.09,-202.01 10768.03,-199.81 10768.03,-192 10768.03,-184.44 10613.24,-182.13 10501.57,-185.09\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"10501.81,-181.61 10491.91,-185.39 10502,-188.61 10501.81,-181.61\"/>\n", + "<text text-anchor=\"middle\" x=\"10837.53\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:subPropertyOf</text>\n", + "</g>\n", + "<!-- 46 -->\n", + "<g id=\"node47\" class=\"node\">\n", + "<title>46</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"10988.29\" cy=\"-105\" rx=\"68.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"10988.29\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:Property</text>\n", + "</g>\n", + "<!-- 7->46 -->\n", + "<g id=\"edge23\" class=\"edge\">\n", + "<title>7->46</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M10473.08,-179.97C10589.04,-163.33 10807.12,-132.01 10918.69,-115.99\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"10919.07,-119.33 10928.48,-114.45 10918.08,-112.4 10919.07,-119.33\"/>\n", + "<text text-anchor=\"middle\" x=\"10757.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 8 -->\n", + "<g id=\"node9\" class=\"node\">\n", + "<title>8</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"12124.29\" cy=\"-192\" rx=\"84.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"12124.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:subClassOf</text>\n", + "</g>\n", + "<!-- 8->8 -->\n", + "<g id=\"edge88\" class=\"edge\">\n", + "<title>8->8</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12201.17,-199.79C12216.15,-198.89 12226.79,-196.29 12226.79,-192 12226.79,-188.85 12221.05,-186.61 12212.07,-185.29\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"12212.47,-181.71 12202.17,-184.21 12211.78,-188.68 12212.47,-181.71\"/>\n", + "<text text-anchor=\"middle\" x=\"12269.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 9 -->\n", + "<g id=\"node10\" class=\"node\">\n", + "<title>9</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"1683.29\" cy=\"-192\" rx=\"65.79\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"1683.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:boolean</text>\n", + "</g>\n", + "<!-- 9->9 -->\n", + "<g id=\"edge66\" class=\"edge\">\n", + "<title>9->9</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M1743.07,-199.98C1756.83,-199.29 1766.94,-196.63 1766.94,-192 1766.94,-188.71 1761.83,-186.41 1753.93,-185.11\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"1754.37,-181.54 1744.07,-184.02 1753.67,-188.5 1754.37,-181.54\"/>\n", + "<text text-anchor=\"middle\" x=\"1809.44\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 9->21 -->\n", + "<g id=\"edge120\" class=\"edge\">\n", + "<title>9->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M1742.75,-183.97C1842.66,-172.52 2050.65,-150.17 2227.29,-141 2717.45,-115.54 4281.83,-107.84 4666.32,-106.31\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.09,-109.81 4676.08,-106.27 4666.07,-102.81 4666.09,-109.81\"/>\n", + "<text text-anchor=\"middle\" x=\"2256.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 10 -->\n", + "<g id=\"node11\" class=\"node\">\n", + "<title>10</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"1924.29\" cy=\"-192\" rx=\"53.89\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"1924.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:short</text>\n", + "</g>\n", + "<!-- 10->10 -->\n", + "<g id=\"edge3\" class=\"edge\">\n", + "<title>10->10</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M1973.05,-200.1C1986.22,-199.67 1996.24,-196.97 1996.24,-192 1996.24,-188.51 1991.29,-186.13 1983.77,-184.89\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"1984.33,-181.33 1974.05,-183.9 1983.69,-188.3 1984.33,-181.33\"/>\n", + "<text text-anchor=\"middle\" x=\"2038.74\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 10->21 -->\n", + "<g id=\"edge54\" class=\"edge\">\n", + "<title>10->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M1974.98,-185.43C2077.32,-174.46 2316.04,-150.34 2517.29,-141 2947.25,-121.04 4310.21,-109.39 4666.43,-106.64\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.2,-110.13 4676.18,-106.55 4666.15,-103.13 4666.2,-110.13\"/>\n", + "<text text-anchor=\"middle\" x=\"2546.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 11 -->\n", + "<g id=\"node12\" class=\"node\">\n", + "<title>11</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"9814.29\" cy=\"-192\" rx=\"67.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"9814.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:Nothing</text>\n", + "</g>\n", + "<!-- 11->1 -->\n", + "<g id=\"edge50\" class=\"edge\">\n", + "<title>11->1</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9803.63,-173.87C9796,-160.56 9786.39,-141.34 9782.29,-123 9776.44,-96.82 9784.88,-66.99 9793.32,-46.01\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9796.93,-47.49 9797.66,-36.92 9790.5,-44.72 9796.93,-47.49\"/>\n", + "<text text-anchor=\"middle\" x=\"9811.29\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 11->11 -->\n", + "<g id=\"edge49\" class=\"edge\">\n", + "<title>11->11</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9881.75,-194.5C9892.52,-194.14 9899.89,-193.3 9899.89,-192 9899.89,-191.21 9897.15,-190.59 9892.58,-190.14\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9892.94,-186.6 9882.75,-189.5 9892.53,-193.58 9892.94,-186.6\"/>\n", + "<text text-anchor=\"middle\" x=\"9956.89\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:subClassOf</text>\n", + "</g>\n", + "<!-- 11->11 -->\n", + "<g id=\"edge74\" class=\"edge\">\n", + "<title>11->11</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9880,-196.79C9939.38,-198.47 10013.89,-196.87 10013.89,-192 10013.89,-187.42 9948.12,-185.74 9890.93,-186.94\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9890.91,-183.46 9881,-187.21 9891.09,-190.46 9890.91,-183.46\"/>\n", + "<text text-anchor=\"middle\" x=\"10056.39\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 11->11 -->\n", + "<g id=\"edge104\" class=\"edge\">\n", + "<title>11->11</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9878.22,-198.23C9964.09,-202.16 10098.89,-200.08 10098.89,-192 10098.89,-184.25 9974.92,-182.02 9889.02,-185.32\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9889.06,-181.86 9879.22,-185.77 9889.36,-188.85 9889.06,-181.86\"/>\n", + "<text text-anchor=\"middle\" x=\"10170.39\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:equivalentClass</text>\n", + "</g>\n", + "<!-- 55 -->\n", + "<g id=\"node56\" class=\"node\">\n", + "<title>55</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"9905.29\" cy=\"-105\" rx=\"55.79\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"9905.29\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:Thing</text>\n", + "</g>\n", + "<!-- 11->55 -->\n", + "<g id=\"edge80\" class=\"edge\">\n", + "<title>11->55</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9832.27,-174.21C9845.82,-161.55 9864.58,-144.03 9879.7,-129.91\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9881.74,-132.85 9886.66,-123.47 9876.96,-127.74 9881.74,-132.85\"/>\n", + "<text text-anchor=\"middle\" x=\"9922.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:subClassOf</text>\n", + "</g>\n", + "<!-- 12 -->\n", + "<g id=\"node13\" class=\"node\">\n", + "<title>12</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"2209.29\" cy=\"-192\" rx=\"110.48\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"2209.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:normalizedString</text>\n", + "</g>\n", + "<!-- 12->12 -->\n", + "<g id=\"edge52\" class=\"edge\">\n", + "<title>12->12</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M2310.56,-199.51C2326.72,-198.41 2337.78,-195.91 2337.78,-192 2337.78,-189.04 2331.43,-186.88 2321.32,-185.53\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"2321.85,-181.97 2311.56,-184.49 2321.17,-188.94 2321.85,-181.97\"/>\n", + "<text text-anchor=\"middle\" x=\"2380.28\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 12->21 -->\n", + "<g id=\"edge92\" class=\"edge\">\n", + "<title>12->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M2299.45,-181.24C2412.72,-169.42 2613.13,-149.99 2785.29,-141 3159.54,-121.45 4337.53,-109.7 4666.32,-106.74\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.22,-110.23 4676.19,-106.64 4666.16,-103.23 4666.22,-110.23\"/>\n", + "<text text-anchor=\"middle\" x=\"2814.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 13 -->\n", + "<g id=\"node14\" class=\"node\">\n", + "<title>13</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"12258.29\" cy=\"-105\" rx=\"57.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"12258.29\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">:Awesome</text>\n", + "</g>\n", + "<!-- 13->13 -->\n", + "<g id=\"edge114\" class=\"edge\">\n", + "<title>13->13</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12310.4,-113.07C12323.93,-112.58 12334.14,-109.89 12334.14,-105 12334.14,-101.53 12328.98,-99.16 12321.14,-97.91\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"12321.68,-94.35 12311.4,-96.93 12321.04,-101.32 12321.68,-94.35\"/>\n", + "<text text-anchor=\"middle\" x=\"12376.64\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 20 -->\n", + "<g id=\"node21\" class=\"node\">\n", + "<title>20</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"12356.29\" cy=\"-18\" rx=\"75.29\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"12356.29\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:Resource</text>\n", + "</g>\n", + "<!-- 13->20 -->\n", + "<g id=\"edge69\" class=\"edge\">\n", + "<title>13->20</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12277.19,-87.61C12291.87,-74.88 12312.44,-57.03 12328.93,-42.74\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"12330.86,-44.82 12336.12,-35.63 12326.27,-39.54 12330.86,-44.82\"/>\n", + "<text text-anchor=\"middle\" x=\"12342.29\" y=\"-57.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 14 -->\n", + "<g id=\"node15\" class=\"node\">\n", + "<title>14</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"12674.29\" cy=\"-192\" rx=\"87.18\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"12674.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:priorVersion</text>\n", + "</g>\n", + "<!-- 14->14 -->\n", + "<g id=\"edge100\" class=\"edge\">\n", + "<title>14->14</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12753.58,-199.77C12768.69,-198.84 12779.39,-196.25 12779.39,-192 12779.39,-188.85 12773.5,-186.61 12764.28,-185.28\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"12764.87,-181.73 12754.58,-184.23 12764.19,-188.69 12764.87,-181.73\"/>\n", + "<text text-anchor=\"middle\" x=\"12821.89\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 40 -->\n", + "<g id=\"node41\" class=\"node\">\n", + "<title>40</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"13944.29\" cy=\"-105\" rx=\"121.58\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"13944.29\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:AnnotationProperty</text>\n", + "</g>\n", + "<!-- 14->40 -->\n", + "<g id=\"edge10\" class=\"edge\">\n", + "<title>14->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12753.2,-183.96C12789.72,-180.78 12833.71,-177.06 12873.29,-174 13216.21,-147.49 13621.48,-123.85 13820.86,-112.73\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"13820.87,-116.18 13830.66,-112.13 13820.48,-109.19 13820.87,-116.18\"/>\n", + "<text text-anchor=\"middle\" x=\"13371.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 15 -->\n", + "<g id=\"node16\" class=\"node\">\n", + "<title>15</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"2502.29\" cy=\"-192\" rx=\"61.19\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"2502.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:double</text>\n", + "</g>\n", + "<!-- 15->15 -->\n", + "<g id=\"edge71\" class=\"edge\">\n", + "<title>15->15</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M2557.73,-200.03C2571.29,-199.43 2581.39,-196.76 2581.39,-192 2581.39,-188.62 2576.29,-186.29 2568.46,-185.01\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"2569.02,-181.45 2558.73,-183.97 2568.35,-188.42 2569.02,-181.45\"/>\n", + "<text text-anchor=\"middle\" x=\"2623.89\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 15->21 -->\n", + "<g id=\"edge14\" class=\"edge\">\n", + "<title>15->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M2558.24,-184.4C2655.76,-173.2 2863.3,-150.76 3039.29,-141 3662.64,-106.42 4415.27,-105.01 4666.23,-105.63\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.07,-109.13 4676.08,-105.66 4666.09,-102.13 4666.07,-109.13\"/>\n", + "<text text-anchor=\"middle\" x=\"3068.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 16 -->\n", + "<g id=\"node17\" class=\"node\">\n", + "<title>16</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"12994.29\" cy=\"-192\" rx=\"111.58\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"12994.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:incompatibleWith</text>\n", + "</g>\n", + "<!-- 16->16 -->\n", + "<g id=\"edge26\" class=\"edge\">\n", + "<title>16->16</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M13096.58,-199.51C13112.91,-198.41 13124.08,-195.91 13124.08,-192 13124.08,-189.04 13117.67,-186.88 13107.45,-185.53\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"13107.87,-181.96 13097.58,-184.49 13107.2,-188.93 13107.87,-181.96\"/>\n", + "<text text-anchor=\"middle\" x=\"13166.58\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 16->40 -->\n", + "<g id=\"edge79\" class=\"edge\">\n", + "<title>16->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M13090.17,-182.42C13266.83,-166.62 13642.85,-132.97 13831.46,-116.1\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"13831.58,-119.51 13841.23,-115.13 13830.96,-112.54 13831.58,-119.51\"/>\n", + "<text text-anchor=\"middle\" x=\"13554.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 17 -->\n", + "<g id=\"node18\" class=\"node\">\n", + "<title>17</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"15374.29\" cy=\"-192\" rx=\"103.18\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"15374.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:equivalentClass</text>\n", + "</g>\n", + "<!-- 17->17 -->\n", + "<g id=\"edge110\" class=\"edge\">\n", + "<title>17->17</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M15468.67,-199.6C15484.61,-198.55 15495.63,-196.01 15495.63,-192 15495.63,-188.99 15489.43,-186.81 15479.61,-185.47\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"15479.96,-181.89 15469.67,-184.4 15479.28,-188.86 15479.96,-181.89\"/>\n", + "<text text-anchor=\"middle\" x=\"15538.13\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 18 -->\n", + "<g id=\"node19\" class=\"node\">\n", + "<title>18</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"2740.29\" cy=\"-192\" rx=\"55.79\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"2740.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:HTML</text>\n", + "</g>\n", + "<!-- 18->18 -->\n", + "<g id=\"edge42\" class=\"edge\">\n", + "<title>18->18</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M2790.72,-200.08C2804.07,-199.62 2814.19,-196.93 2814.19,-192 2814.19,-188.54 2809.19,-186.17 2801.58,-184.92\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"2802,-181.35 2791.72,-183.92 2801.35,-188.32 2802,-181.35\"/>\n", + "<text text-anchor=\"middle\" x=\"2856.69\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 18->21 -->\n", + "<g id=\"edge59\" class=\"edge\">\n", + "<title>18->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M2792.41,-185.13C2891.42,-174.25 3113.58,-151.14 3301.29,-141 3819.01,-113.04 4441.84,-107.42 4666.38,-106.28\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.11,-109.78 4676.09,-106.23 4666.07,-102.78 4666.11,-109.78\"/>\n", + "<text text-anchor=\"middle\" x=\"3330.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 19 -->\n", + "<g id=\"node20\" class=\"node\">\n", + "<title>19</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"2975.29\" cy=\"-192\" rx=\"57.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"2975.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:string</text>\n", + "</g>\n", + "<!-- 19->19 -->\n", + "<g id=\"edge28\" class=\"edge\">\n", + "<title>19->19</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M3027.4,-200.07C3040.93,-199.58 3051.14,-196.89 3051.14,-192 3051.14,-188.53 3045.98,-186.16 3038.14,-184.91\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"3038.68,-181.35 3028.4,-183.93 3038.04,-188.32 3038.68,-181.35\"/>\n", + "<text text-anchor=\"middle\" x=\"3093.64\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 19->21 -->\n", + "<g id=\"edge43\" class=\"edge\">\n", + "<title>19->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M3029.23,-185.2C3062.64,-181.71 3106.43,-177.32 3145.29,-174 3352.17,-156.33 3403.93,-151.52 3611.29,-141 4005.44,-121.01 4476.79,-110.94 4666.75,-107.45\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4666.56,-110.94 4676.49,-107.26 4666.43,-103.94 4666.56,-110.94\"/>\n", + "<text text-anchor=\"middle\" x=\"3640.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 20->20 -->\n", + "<g id=\"edge121\" class=\"edge\">\n", + "<title>20->20</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12424.71,-25.89C12439.21,-25.09 12449.69,-22.46 12449.69,-18 12449.69,-14.76 12444.16,-12.48 12435.57,-11.17\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"12436,-7.6 12425.71,-10.11 12435.32,-14.57 12436,-7.6\"/>\n", + "<text text-anchor=\"middle\" x=\"12492.19\" y=\"-14.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 21->21 -->\n", + "<g id=\"edge47\" class=\"edge\">\n", + "<title>21->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4820.23,-112.89C4834.63,-112.09 4845.04,-109.46 4845.04,-105 4845.04,-101.76 4839.55,-99.48 4831.02,-98.17\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4831.53,-94.61 4821.23,-97.11 4830.84,-101.58 4831.53,-94.61\"/>\n", + "<text text-anchor=\"middle\" x=\"4887.54\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 22 -->\n", + "<g id=\"node23\" class=\"node\">\n", + "<title>22</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"12398.29\" cy=\"-192\" rx=\"68.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"12398.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">:JupyterRDF</text>\n", + "</g>\n", + "<!-- 22->13 -->\n", + "<g id=\"edge57\" class=\"edge\">\n", + "<title>22->13</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12371.96,-175.01C12349.58,-161.43 12317.3,-141.82 12292.85,-126.98\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"12294.93,-123.54 12284.56,-121.34 12291.3,-129.53 12294.93,-123.54\"/>\n", + "<text text-anchor=\"middle\" x=\"12345.79\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">:is</text>\n", + "</g>\n", + "<!-- 22->20 -->\n", + "<g id=\"edge29\" class=\"edge\">\n", + "<title>22->20</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12410.23,-173.98C12423.35,-153 12441.01,-116.51 12428.29,-87 12420.44,-68.79 12405.05,-53.18 12390.5,-41.53\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"12393.17,-38.4 12383.1,-35.14 12388.94,-43.98 12393.17,-38.4\"/>\n", + "<text text-anchor=\"middle\" x=\"12461.29\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 22->22 -->\n", + "<g id=\"edge103\" class=\"edge\">\n", + "<title>22->22</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M12460.31,-199.96C12474.3,-199.24 12484.54,-196.59 12484.54,-192 12484.54,-188.7 12479.25,-186.4 12471.08,-185.11\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"12471.61,-181.54 12461.31,-184.04 12470.92,-188.51 12471.61,-181.54\"/>\n", + "<text text-anchor=\"middle\" x=\"12527.04\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 23 -->\n", + "<g id=\"node24\" class=\"node\">\n", + "<title>23</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"15718.29\" cy=\"-192\" rx=\"119.68\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"15718.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:equivalentProperty</text>\n", + "</g>\n", + "<!-- 23->23 -->\n", + "<g id=\"edge84\" class=\"edge\">\n", + "<title>23->23</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M15828.4,-199.4C15844.8,-198.25 15855.88,-195.78 15855.88,-192 15855.88,-189.13 15849.52,-187.02 15839.3,-185.67\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"15839.7,-182.09 15829.4,-184.6 15839.01,-189.06 15839.7,-182.09\"/>\n", + "<text text-anchor=\"middle\" x=\"15898.38\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 24 -->\n", + "<g id=\"node25\" class=\"node\">\n", + "<title>24</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"3277.29\" cy=\"-192\" rx=\"122.68\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"3277.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:nonNegativeInteger</text>\n", + "</g>\n", + "<!-- 24->21 -->\n", + "<g id=\"edge56\" class=\"edge\">\n", + "<title>24->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M3376.89,-181.18C3494.1,-169.95 3694.67,-151.72 3867.29,-141 4160.78,-122.77 4509.63,-112.25 4667.37,-108.09\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4667.03,-111.57 4676.93,-107.81 4666.85,-104.57 4667.03,-111.57\"/>\n", + "<text text-anchor=\"middle\" x=\"3896.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 24->24 -->\n", + "<g id=\"edge40\" class=\"edge\">\n", + "<title>24->24</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M3390.01,-199.4C3406.78,-198.25 3418.13,-195.78 3418.13,-192 3418.13,-189.11 3411.48,-186.98 3400.83,-185.63\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"3401.29,-182.06 3391.01,-184.6 3400.63,-189.03 3401.29,-182.06\"/>\n", + "<text text-anchor=\"middle\" x=\"3460.63\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 25 -->\n", + "<g id=\"node26\" class=\"node\">\n", + "<title>25</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"13376.29\" cy=\"-192\" rx=\"149.47\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"13376.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:backwardCompatibleWith</text>\n", + "</g>\n", + "<!-- 25->25 -->\n", + "<g id=\"edge20\" class=\"edge\">\n", + "<title>25->25</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M13514.6,-199.13C13532.18,-197.88 13543.78,-195.5 13543.78,-192 13543.78,-189.26 13536.7,-187.21 13525.22,-185.85\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"13525.88,-182.31 13515.6,-184.87 13525.23,-189.28 13525.88,-182.31\"/>\n", + "<text text-anchor=\"middle\" x=\"13586.28\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 25->40 -->\n", + "<g id=\"edge122\" class=\"edge\">\n", + "<title>25->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M13467.55,-177.34C13572.6,-161.62 13744.28,-135.93 13850.42,-120.05\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"13850.75,-123.39 13860.12,-118.45 13849.71,-116.47 13850.75,-123.39\"/>\n", + "<text text-anchor=\"middle\" x=\"13723.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 26 -->\n", + "<g id=\"node27\" class=\"node\">\n", + "<title>26</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"3578.29\" cy=\"-192\" rx=\"57.39\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"3578.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:Name</text>\n", + "</g>\n", + "<!-- 26->21 -->\n", + "<g id=\"edge67\" class=\"edge\">\n", + "<title>26->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M3632.26,-185.52C3665.68,-182.15 3709.47,-177.77 3748.29,-174 3903.81,-158.89 3942.47,-152.51 4098.29,-141 4302.48,-125.92 4542.99,-114.74 4667.7,-109.43\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4667.83,-112.89 4677.67,-108.97 4667.53,-105.89 4667.83,-112.89\"/>\n", + "<text text-anchor=\"middle\" x=\"4127.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 26->26 -->\n", + "<g id=\"edge113\" class=\"edge\">\n", + "<title>26->26</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M3630.31,-200.06C3643.55,-199.53 3653.49,-196.84 3653.49,-192 3653.49,-188.59 3648.57,-186.26 3641.05,-184.98\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"3641.6,-181.42 3631.31,-183.94 3640.92,-188.39 3641.6,-181.42\"/>\n", + "<text text-anchor=\"middle\" x=\"3695.99\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 27 -->\n", + "<g id=\"node28\" class=\"node\">\n", + "<title>27</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"3821.29\" cy=\"-192\" rx=\"64.19\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"3821.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:anyURI</text>\n", + "</g>\n", + "<!-- 27->21 -->\n", + "<g id=\"edge58\" class=\"edge\">\n", + "<title>27->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M3880.35,-184.46C3971.78,-174.44 4153.13,-154.99 4307.29,-141 4433.98,-129.5 4581.17,-118.36 4670.48,-111.84\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4670.62,-115.27 4680.34,-111.05 4670.12,-108.29 4670.62,-115.27\"/>\n", + "<text text-anchor=\"middle\" x=\"4336.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 27->27 -->\n", + "<g id=\"edge96\" class=\"edge\">\n", + "<title>27->27</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M3879.39,-200.01C3893.32,-199.39 3903.64,-196.72 3903.64,-192 3903.64,-188.61 3898.31,-186.28 3890.13,-185\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"3890.67,-181.44 3880.39,-183.99 3890.01,-188.41 3890.67,-181.44\"/>\n", + "<text text-anchor=\"middle\" x=\"3946.14\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 28 -->\n", + "<g id=\"node29\" class=\"node\">\n", + "<title>28</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"10988.29\" cy=\"-192\" rx=\"27\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"10988.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">:is</text>\n", + "</g>\n", + "<!-- 28->28 -->\n", + "<g id=\"edge63\" class=\"edge\">\n", + "<title>28->28</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M11015.09,-194.71C11025.07,-194.8 11033.29,-193.9 11033.29,-192 11033.29,-190.87 11030.4,-190.1 11025.95,-189.67\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"11026.21,-186.14 11016.09,-189.29 11025.96,-193.14 11026.21,-186.14\"/>\n", + "<text text-anchor=\"middle\" x=\"11117.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:equivalentProperty</text>\n", + "</g>\n", + "<!-- 28->28 -->\n", + "<g id=\"edge77\" class=\"edge\">\n", + "<title>28->28</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M11015.32,-195.29C11073.93,-199 11201.29,-197.9 11201.29,-192 11201.29,-186.44 11088.42,-185.14 11026.3,-188.11\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"11026.12,-184.67 11016.32,-188.71 11026.5,-191.66 11026.12,-184.67\"/>\n", + "<text text-anchor=\"middle\" x=\"11270.79\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:subPropertyOf</text>\n", + "</g>\n", + "<!-- 28->28 -->\n", + "<g id=\"edge98\" class=\"edge\">\n", + "<title>28->28</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M11015.06,-195.9C11099.18,-202.67 11340.29,-201.37 11340.29,-192 11340.29,-183.01 11118.1,-181.45 11025.89,-187.33\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"11025.78,-183.9 11016.06,-188.1 11026.28,-190.88 11025.78,-183.9\"/>\n", + "<text text-anchor=\"middle\" x=\"11382.79\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 28->46 -->\n", + "<g id=\"edge102\" class=\"edge\">\n", + "<title>28->46</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M10988.29,-173.8C10988.29,-162.47 10988.29,-147.36 10988.29,-134.29\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"10991.79,-134.47 10988.29,-124.47 10984.79,-134.47 10991.79,-134.47\"/>\n", + "<text text-anchor=\"middle\" x=\"11017.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 29 -->\n", + "<g id=\"node30\" class=\"node\">\n", + "<title>29</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"4110.29\" cy=\"-192\" rx=\"103.98\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"4110.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:negativeInteger</text>\n", + "</g>\n", + "<!-- 29->21 -->\n", + "<g id=\"edge87\" class=\"edge\">\n", + "<title>29->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4190.25,-180.09C4265.37,-169.88 4380.94,-154.24 4481.29,-141 4547.21,-132.3 4622.18,-122.64 4676.53,-115.67\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4676.64,-119.06 4686.12,-114.31 4675.75,-112.11 4676.64,-119.06\"/>\n", + "<text text-anchor=\"middle\" x=\"4510.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 29->29 -->\n", + "<g id=\"edge101\" class=\"edge\">\n", + "<title>29->29</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4205.43,-199.58C4221.32,-198.52 4232.28,-195.99 4232.28,-192 4232.28,-189.01 4226.12,-186.84 4216.33,-185.49\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4216.72,-181.91 4206.43,-184.42 4216.04,-188.88 4216.72,-181.91\"/>\n", + "<text text-anchor=\"middle\" x=\"4274.78\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 30 -->\n", + "<g id=\"node31\" class=\"node\">\n", + "<title>30</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"4377.29\" cy=\"-192\" rx=\"42.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"4377.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:int</text>\n", + "</g>\n", + "<!-- 30->21 -->\n", + "<g id=\"edge36\" class=\"edge\">\n", + "<title>30->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4414.28,-182.62C4478.2,-168.13 4610.07,-138.24 4688.88,-120.37\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4689.18,-123.67 4698.16,-118.04 4687.63,-116.84 4689.18,-123.67\"/>\n", + "<text text-anchor=\"middle\" x=\"4616.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 30->30 -->\n", + "<g id=\"edge111\" class=\"edge\">\n", + "<title>30->30</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4415.83,-200.15C4427.96,-200.03 4437.54,-197.31 4437.54,-192 4437.54,-188.43 4433.22,-186.04 4426.7,-184.81\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4427.09,-181.24 4416.83,-183.85 4426.48,-188.21 4427.09,-181.24\"/>\n", + "<text text-anchor=\"middle\" x=\"4480.04\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 31 -->\n", + "<g id=\"node32\" class=\"node\">\n", + "<title>31</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"4614.29\" cy=\"-192\" rx=\"73.39\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"4614.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:dateTime</text>\n", + "</g>\n", + "<!-- 31->21 -->\n", + "<g id=\"edge5\" class=\"edge\">\n", + "<title>31->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4640.57,-174.81C4662.25,-161.46 4693.2,-142.39 4717.03,-127.72\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4718.43,-130.35 4725.11,-122.13 4714.76,-124.39 4718.43,-130.35\"/>\n", + "<text text-anchor=\"middle\" x=\"4721.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 31->31 -->\n", + "<g id=\"edge39\" class=\"edge\">\n", + "<title>31->31</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4680.87,-199.92C4695.28,-199.14 4705.74,-196.5 4705.74,-192 4705.74,-188.73 4700.22,-186.44 4691.67,-185.14\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4692.16,-181.57 4681.87,-184.08 4691.49,-188.54 4692.16,-181.57\"/>\n", + "<text text-anchor=\"middle\" x=\"4748.24\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 32 -->\n", + "<g id=\"node33\" class=\"node\">\n", + "<title>32</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"4890.29\" cy=\"-192\" rx=\"81.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"4890.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:PlainLiteral</text>\n", + "</g>\n", + "<!-- 32->21 -->\n", + "<g id=\"edge117\" class=\"edge\">\n", + "<title>32->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4863.69,-174.61C4842.07,-161.3 4811.39,-142.4 4787.7,-127.81\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4789.7,-124.31 4779.35,-122.05 4786.03,-130.27 4789.7,-124.31\"/>\n", + "<text text-anchor=\"middle\" x=\"4859.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 32->32 -->\n", + "<g id=\"edge125\" class=\"edge\">\n", + "<title>32->32</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M4964.3,-199.82C4979.03,-198.94 4989.54,-196.33 4989.54,-192 4989.54,-188.82 4983.87,-186.57 4975.03,-185.25\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4975.6,-181.69 4965.3,-184.18 4974.91,-188.65 4975.6,-181.69\"/>\n", + "<text text-anchor=\"middle\" x=\"5032.04\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 33 -->\n", + "<g id=\"node34\" class=\"node\">\n", + "<title>33</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"5187.29\" cy=\"-192\" rx=\"94.78\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"5187.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:unsignedLong</text>\n", + "</g>\n", + "<!-- 33->21 -->\n", + "<g id=\"edge75\" class=\"edge\">\n", + "<title>33->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M5123.11,-178.46C5041.83,-162.58 4902.42,-135.34 4819.66,-119.16\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4820.6,-115.59 4810.11,-117.1 4819.26,-122.46 4820.6,-115.59\"/>\n", + "<text text-anchor=\"middle\" x=\"5025.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 33->33 -->\n", + "<g id=\"edge81\" class=\"edge\">\n", + "<title>33->33</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M5273.91,-199.68C5289.38,-198.68 5300.18,-196.12 5300.18,-192 5300.18,-188.94 5294.23,-186.74 5284.84,-185.41\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"5285.21,-181.83 5274.91,-184.32 5284.52,-188.79 5285.21,-181.83\"/>\n", + "<text text-anchor=\"middle\" x=\"5342.68\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 34 -->\n", + "<g id=\"node35\" class=\"node\">\n", + "<title>34</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"5501.29\" cy=\"-192\" rx=\"98.28\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"5501.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:unsignedShort</text>\n", + "</g>\n", + "<!-- 34->21 -->\n", + "<g id=\"edge22\" class=\"edge\">\n", + "<title>34->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M5430.29,-179.19C5418.29,-177.34 5405.95,-175.54 5394.29,-174 5192.6,-147.31 4954.15,-124.28 4832.48,-113.14\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4833.06,-109.59 4822.79,-112.17 4832.43,-116.56 4833.06,-109.59\"/>\n", + "<text text-anchor=\"middle\" x=\"5265.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 34->34 -->\n", + "<g id=\"edge90\" class=\"edge\">\n", + "<title>34->34</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M5590.89,-199.65C5606.55,-198.63 5617.43,-196.08 5617.43,-192 5617.43,-188.94 5611.31,-186.74 5601.64,-185.4\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"5602.19,-181.84 5591.89,-184.35 5601.51,-188.81 5602.19,-181.84\"/>\n", + "<text text-anchor=\"middle\" x=\"5659.93\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 35 -->\n", + "<g id=\"node36\" class=\"node\">\n", + "<title>35</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"5792.29\" cy=\"-192\" rx=\"72.29\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"5792.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:language</text>\n", + "</g>\n", + "<!-- 35->21 -->\n", + "<g id=\"edge65\" class=\"edge\">\n", + "<title>35->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M5740.61,-179.13C5730.91,-177.19 5720.82,-175.37 5711.29,-174 5391.02,-127.79 5005.85,-112.57 4837.74,-107.91\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.08,-104.39 4827.99,-107.61 4837.89,-111.38 4838.08,-104.39\"/>\n", + "<text text-anchor=\"middle\" x=\"5584.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 35->35 -->\n", + "<g id=\"edge51\" class=\"edge\">\n", + "<title>35->35</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M5857.93,-199.92C5872.13,-199.14 5882.44,-196.5 5882.44,-192 5882.44,-188.76 5877.11,-186.49 5868.84,-185.18\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"5869.23,-181.6 5858.93,-184.08 5868.53,-188.57 5869.23,-181.6\"/>\n", + "<text text-anchor=\"middle\" x=\"5924.94\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 36 -->\n", + "<g id=\"node37\" class=\"node\">\n", + "<title>36</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"13701.29\" cy=\"-192\" rx=\"54.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"13701.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:label</text>\n", + "</g>\n", + "<!-- 36->36 -->\n", + "<g id=\"edge53\" class=\"edge\">\n", + "<title>36->36</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M13750.83,-200.08C13763.95,-199.62 13773.89,-196.93 13773.89,-192 13773.89,-188.57 13769.08,-186.23 13761.75,-184.96\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"13762.12,-181.38 13751.83,-183.92 13761.45,-188.35 13762.12,-181.38\"/>\n", + "<text text-anchor=\"middle\" x=\"13816.39\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 36->40 -->\n", + "<g id=\"edge38\" class=\"edge\">\n", + "<title>36->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M13737.94,-178.18C13777.75,-164.26 13841.85,-141.84 13888.05,-125.68\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"13888.92,-128.73 13897.2,-122.12 13886.61,-122.12 13888.92,-128.73\"/>\n", + "<text text-anchor=\"middle\" x=\"13866.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 37 -->\n", + "<g id=\"node38\" class=\"node\">\n", + "<title>37</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"6070.29\" cy=\"-192\" rx=\"85.29\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"6070.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:unsignedInt</text>\n", + "</g>\n", + "<!-- 37->21 -->\n", + "<g id=\"edge93\" class=\"edge\">\n", + "<title>37->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M6008.98,-179.12C5998.12,-177.24 5986.89,-175.44 5976.29,-174 5817.53,-152.39 5777.17,-151.58 5617.29,-141 5331.89,-122.12 4992.8,-111.97 4837.56,-108\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4837.79,-104.48 4827.7,-107.73 4837.61,-111.48 4837.79,-104.48\"/>\n", + "<text text-anchor=\"middle\" x=\"5850.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 37->37 -->\n", + "<g id=\"edge70\" class=\"edge\">\n", + "<title>37->37</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M6148.11,-199.77C6162.94,-198.84 6173.44,-196.25 6173.44,-192 6173.44,-188.88 6167.78,-186.66 6158.89,-185.33\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"6159.41,-181.76 6149.11,-184.23 6158.7,-188.72 6159.41,-181.76\"/>\n", + "<text text-anchor=\"middle\" x=\"6215.94\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 38 -->\n", + "<g id=\"node39\" class=\"node\">\n", + "<title>38</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"6394.29\" cy=\"-192\" rx=\"117.78\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"6394.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:nonPositiveInteger</text>\n", + "</g>\n", + "<!-- 38->21 -->\n", + "<g id=\"edge7\" class=\"edge\">\n", + "<title>38->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M6309.65,-179.1C6295.52,-177.28 6281,-175.51 6267.29,-174 6097.02,-155.3 6054.3,-150.99 5883.29,-141 5493.44,-118.23 5027.07,-109.72 4838.09,-107.05\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.18,-103.54 4828.13,-106.9 4838.08,-110.54 4838.18,-103.54\"/>\n", + "<text text-anchor=\"middle\" x=\"6124.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 38->38 -->\n", + "<g id=\"edge60\" class=\"edge\">\n", + "<title>38->38</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M6502.57,-199.42C6518.88,-198.27 6529.93,-195.8 6529.93,-192 6529.93,-189.12 6523.59,-187 6513.41,-185.65\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"6513.87,-182.08 6503.57,-184.58 6513.18,-189.04 6513.87,-182.08\"/>\n", + "<text text-anchor=\"middle\" x=\"6572.43\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 39 -->\n", + "<g id=\"node40\" class=\"node\">\n", + "<title>39</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"6726.29\" cy=\"-192\" rx=\"93.68\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"6726.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:unsignedByte</text>\n", + "</g>\n", + "<!-- 39->21 -->\n", + "<g id=\"edge2\" class=\"edge\">\n", + "<title>39->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M6659.76,-178.98C6647.97,-177.12 6635.79,-175.36 6624.29,-174 6417.66,-149.54 6365.13,-150.93 6157.29,-141 5657.87,-117.15 5057.76,-109.05 4838.14,-106.78\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.38,-103.27 4828.35,-106.66 4838.31,-110.27 4838.38,-103.27\"/>\n", + "<text text-anchor=\"middle\" x=\"6476.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 39->39 -->\n", + "<g id=\"edge91\" class=\"edge\">\n", + "<title>39->39</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M6811.91,-199.68C6827.2,-198.68 6837.88,-196.12 6837.88,-192 6837.88,-188.94 6832,-186.74 6822.72,-185.41\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"6823.21,-181.84 6812.91,-184.32 6822.51,-188.8 6823.21,-181.84\"/>\n", + "<text text-anchor=\"middle\" x=\"6880.38\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 40->40 -->\n", + "<g id=\"edge12\" class=\"edge\">\n", + "<title>40->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M14055.96,-112.4C14072.59,-111.25 14083.83,-108.78 14083.83,-105 14083.83,-102.11 14077.24,-99.98 14066.69,-98.63\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14067.25,-95.07 14056.96,-97.6 14066.59,-102.04 14067.25,-95.07\"/>\n", + "<text text-anchor=\"middle\" x=\"14126.33\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 41 -->\n", + "<g id=\"node42\" class=\"node\">\n", + "<title>41</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"6991.29\" cy=\"-192\" rx=\"50.09\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"6991.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:date</text>\n", + "</g>\n", + "<!-- 41->21 -->\n", + "<g id=\"edge46\" class=\"edge\">\n", + "<title>41->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M6954.74,-179.22C6947.37,-177.2 6939.64,-175.33 6932.29,-174 6746.74,-140.39 6697.64,-150.22 6509.29,-141 5867.53,-109.6 5092.59,-106.18 4837.92,-105.95\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.27,-102.45 4828.27,-105.94 4838.27,-109.45 4838.27,-102.45\"/>\n", + "<text text-anchor=\"middle\" x=\"6840.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 41->41 -->\n", + "<g id=\"edge95\" class=\"edge\">\n", + "<title>41->41</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M7036.44,-200.12C7049.37,-199.81 7059.34,-197.1 7059.34,-192 7059.34,-188.42 7054.41,-186.01 7046.99,-184.79\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"7047.71,-181.25 7037.44,-183.88 7047.1,-188.23 7047.71,-181.25\"/>\n", + "<text text-anchor=\"middle\" x=\"7101.84\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 42 -->\n", + "<g id=\"node43\" class=\"node\">\n", + "<title>42</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"7228.29\" cy=\"-192\" rx=\"65.79\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"7228.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:decimal</text>\n", + "</g>\n", + "<!-- 42->21 -->\n", + "<g id=\"edge37\" class=\"edge\">\n", + "<title>42->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M7180.43,-179.36C7171.45,-177.4 7162.11,-175.51 7153.29,-174 7029.8,-152.79 6998.32,-149.38 6873.29,-141 6467.53,-113.81 5183.31,-107.48 4838.31,-106.26\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.42,-102.76 4828.41,-106.22 4838.4,-109.76 4838.42,-102.76\"/>\n", + "<text text-anchor=\"middle\" x=\"7067.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 42->42 -->\n", + "<g id=\"edge123\" class=\"edge\">\n", + "<title>42->42</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M7288.07,-199.98C7301.83,-199.29 7311.94,-196.63 7311.94,-192 7311.94,-188.71 7306.83,-186.41 7298.93,-185.11\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"7299.37,-181.54 7289.07,-184.02 7298.67,-188.5 7299.37,-181.54\"/>\n", + "<text text-anchor=\"middle\" x=\"7354.44\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 43 -->\n", + "<g id=\"node44\" class=\"node\">\n", + "<title>43</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"13944.29\" cy=\"-192\" rx=\"67.69\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"13944.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:seeAlso</text>\n", + "</g>\n", + "<!-- 43->40 -->\n", + "<g id=\"edge9\" class=\"edge\">\n", + "<title>43->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M13944.29,-173.8C13944.29,-162.47 13944.29,-147.36 13944.29,-134.29\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"13947.79,-134.47 13944.29,-124.47 13940.79,-134.47 13947.79,-134.47\"/>\n", + "<text text-anchor=\"middle\" x=\"13973.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 43->43 -->\n", + "<g id=\"edge105\" class=\"edge\">\n", + "<title>43->43</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M14005.85,-199.96C14019.73,-199.24 14029.89,-196.59 14029.89,-192 14029.89,-188.7 14024.64,-186.4 14016.53,-185.11\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14017.14,-181.55 14006.85,-184.04 14016.45,-188.52 14017.14,-181.55\"/>\n", + "<text text-anchor=\"middle\" x=\"14072.39\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 44 -->\n", + "<g id=\"node45\" class=\"node\">\n", + "<title>44</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"7471.29\" cy=\"-192\" rx=\"55.79\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"7471.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:token</text>\n", + "</g>\n", + "<!-- 44->21 -->\n", + "<g id=\"edge30\" class=\"edge\">\n", + "<title>44->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M7430.59,-179.37C7422.58,-177.36 7414.21,-175.45 7406.29,-174 7271.75,-149.29 7236.83,-149.36 7100.29,-141 6647.21,-113.25 5205.71,-107.29 4838.21,-106.21\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.41,-102.71 4828.4,-106.18 4838.39,-109.71 4838.41,-102.71\"/>\n", + "<text text-anchor=\"middle\" x=\"7320.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 44->44 -->\n", + "<g id=\"edge118\" class=\"edge\">\n", + "<title>44->44</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M7521.72,-200.08C7535.07,-199.62 7545.19,-196.93 7545.19,-192 7545.19,-188.54 7540.19,-186.17 7532.58,-184.92\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"7533,-181.35 7522.72,-183.92 7532.35,-188.32 7533,-181.35\"/>\n", + "<text text-anchor=\"middle\" x=\"7587.69\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 45 -->\n", + "<g id=\"node46\" class=\"node\">\n", + "<title>45</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"7741.29\" cy=\"-192\" rx=\"93.68\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"7741.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:base64Binary</text>\n", + "</g>\n", + "<!-- 45->21 -->\n", + "<g id=\"edge4\" class=\"edge\">\n", + "<title>45->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M7673.61,-179.23C7662.17,-177.38 7650.4,-175.57 7639.29,-174 7512.59,-156.14 7480.98,-149.2 7353.29,-141 6847.76,-108.52 5230.77,-106.09 4838.58,-105.98\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.62,-102.48 4828.62,-105.98 4838.62,-109.48 4838.62,-102.48\"/>\n", + "<text text-anchor=\"middle\" x=\"7540.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 45->45 -->\n", + "<g id=\"edge119\" class=\"edge\">\n", + "<title>45->45</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M7826.91,-199.68C7842.2,-198.68 7852.88,-196.12 7852.88,-192 7852.88,-188.94 7847,-186.74 7837.72,-185.41\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"7838.21,-181.84 7827.91,-184.32 7837.51,-188.8 7838.21,-181.84\"/>\n", + "<text text-anchor=\"middle\" x=\"7895.38\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 46->46 -->\n", + "<g id=\"edge16\" class=\"edge\">\n", + "<title>46->46</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M11050.31,-112.96C11064.3,-112.24 11074.54,-109.59 11074.54,-105 11074.54,-101.7 11069.25,-99.4 11061.08,-98.11\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"11061.61,-94.54 11051.31,-97.04 11060.92,-101.51 11061.61,-94.54\"/>\n", + "<text text-anchor=\"middle\" x=\"11117.04\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 47 -->\n", + "<g id=\"node48\" class=\"node\">\n", + "<title>47</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"8032.29\" cy=\"-192\" rx=\"76.89\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"8032.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:langString</text>\n", + "</g>\n", + "<!-- 47->21 -->\n", + "<g id=\"edge85\" class=\"edge\">\n", + "<title>47->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M7977.12,-179.05C7967.22,-177.17 7956.98,-175.39 7947.29,-174 7782.12,-150.27 7739.95,-149.37 7573.29,-141 7021.27,-113.26 5249.99,-107.23 4838.34,-106.19\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.43,-102.69 4828.42,-106.16 4838.41,-109.69 4838.43,-102.69\"/>\n", + "<text text-anchor=\"middle\" x=\"7834.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 47->47 -->\n", + "<g id=\"edge15\" class=\"edge\">\n", + "<title>47->47</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M8102.08,-199.87C8116.57,-199.04 8126.99,-196.42 8126.99,-192 8126.99,-188.79 8121.49,-186.53 8112.92,-185.21\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"8113.38,-181.64 8103.08,-184.13 8112.68,-188.61 8113.38,-181.64\"/>\n", + "<text text-anchor=\"middle\" x=\"8169.49\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 48 -->\n", + "<g id=\"node49\" class=\"node\">\n", + "<title>48</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"14220.29\" cy=\"-192\" rx=\"87.99\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"14220.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:isDefinedBy</text>\n", + "</g>\n", + "<!-- 48->40 -->\n", + "<g id=\"edge44\" class=\"edge\">\n", + "<title>48->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M14172.85,-176.39C14126.66,-162.16 14056.24,-140.48 14005.78,-124.93\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14006.91,-121.32 13996.33,-121.72 14004.85,-128.01 14006.91,-121.32\"/>\n", + "<text text-anchor=\"middle\" x=\"14127.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 48->48 -->\n", + "<g id=\"edge124\" class=\"edge\">\n", + "<title>48->48</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M14300.52,-199.74C14315.49,-198.78 14326.04,-196.21 14326.04,-192 14326.04,-188.91 14320.35,-186.7 14311.4,-185.37\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14311.83,-181.79 14301.52,-184.26 14311.12,-188.75 14311.83,-181.79\"/>\n", + "<text text-anchor=\"middle\" x=\"14368.54\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 49 -->\n", + "<g id=\"node50\" class=\"node\">\n", + "<title>49</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"8280.29\" cy=\"-192\" rx=\"50.09\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"8280.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:float</text>\n", + "</g>\n", + "<!-- 49->21 -->\n", + "<g id=\"edge27\" class=\"edge\">\n", + "<title>49->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M8243.73,-179.31C8236.36,-177.28 8228.63,-175.39 8221.29,-174 8066.02,-144.66 8025.09,-149.23 7867.29,-141 7253.83,-109.01 5276.27,-106.23 4838.59,-106.01\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.62,-102.51 4828.62,-106.01 4838.62,-109.51 4838.62,-102.51\"/>\n", + "<text text-anchor=\"middle\" x=\"8135.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 49->49 -->\n", + "<g id=\"edge76\" class=\"edge\">\n", + "<title>49->49</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M8325.44,-200.12C8338.37,-199.81 8348.34,-197.1 8348.34,-192 8348.34,-188.42 8343.41,-186.01 8335.99,-184.79\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"8336.71,-181.25 8326.44,-183.88 8336.1,-188.23 8336.71,-181.25\"/>\n", + "<text text-anchor=\"middle\" x=\"8390.84\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 50 -->\n", + "<g id=\"node51\" class=\"node\">\n", + "<title>50</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"16024.29\" cy=\"-192\" rx=\"65.79\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"16024.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 50->50 -->\n", + "<g id=\"edge33\" class=\"edge\">\n", + "<title>50->50</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M16084.07,-199.98C16097.83,-199.29 16107.94,-196.63 16107.94,-192 16107.94,-188.71 16102.83,-186.41 16094.93,-185.11\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"16095.37,-181.54 16085.07,-184.02 16094.67,-188.5 16095.37,-181.54\"/>\n", + "<text text-anchor=\"middle\" x=\"16150.44\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 51 -->\n", + "<g id=\"node52\" class=\"node\">\n", + "<title>51</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"8501.29\" cy=\"-192\" rx=\"50.09\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"8501.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:long</text>\n", + "</g>\n", + "<!-- 51->21 -->\n", + "<g id=\"edge24\" class=\"edge\">\n", + "<title>51->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M8464.38,-179.38C8457.11,-177.37 8449.5,-175.46 8442.29,-174 8322.08,-149.61 8290.69,-148.97 8168.29,-141 7827.45,-118.8 5333.96,-108.21 4837.95,-106.31\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.32,-102.81 4828.3,-106.27 4838.29,-109.81 4838.32,-102.81\"/>\n", + "<text text-anchor=\"middle\" x=\"8368.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 51->51 -->\n", + "<g id=\"edge45\" class=\"edge\">\n", + "<title>51->51</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M8546.44,-200.12C8559.37,-199.81 8569.34,-197.1 8569.34,-192 8569.34,-188.42 8564.41,-186.01 8556.99,-184.79\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"8557.71,-181.25 8547.44,-183.88 8557.1,-188.23 8557.71,-181.25\"/>\n", + "<text text-anchor=\"middle\" x=\"8611.84\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 52 -->\n", + "<g id=\"node53\" class=\"node\">\n", + "<title>52</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"14511.29\" cy=\"-192\" rx=\"81.79\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"14511.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:versionInfo</text>\n", + "</g>\n", + "<!-- 52->40 -->\n", + "<g id=\"edge78\" class=\"edge\">\n", + "<title>52->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M14451.15,-179.39C14440.87,-177.51 14430.28,-175.65 14420.29,-174 14290.69,-152.65 14140.57,-131.85 14044.13,-119\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14044.89,-115.43 14034.51,-117.59 14043.96,-122.37 14044.89,-115.43\"/>\n", + "<text text-anchor=\"middle\" x=\"14331.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 52->52 -->\n", + "<g id=\"edge8\" class=\"edge\">\n", + "<title>52->52</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M14585.79,-199.82C14600.61,-198.94 14611.19,-196.33 14611.19,-192 14611.19,-188.82 14605.48,-186.57 14596.58,-185.25\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14597.08,-181.68 14586.79,-184.18 14596.4,-188.65 14597.08,-181.68\"/>\n", + "<text text-anchor=\"middle\" x=\"14653.69\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 53 -->\n", + "<g id=\"node54\" class=\"node\">\n", + "<title>53</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"14796.29\" cy=\"-192\" rx=\"81.79\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"14796.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:deprecated</text>\n", + "</g>\n", + "<!-- 53->40 -->\n", + "<g id=\"edge35\" class=\"edge\">\n", + "<title>53->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M14737.19,-179.18C14726.59,-177.28 14715.64,-175.46 14705.29,-174 14481,-142.26 14217.3,-122.61 14066.58,-113.04\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14067.13,-109.5 14056.93,-112.37 14066.69,-116.49 14067.13,-109.5\"/>\n", + "<text text-anchor=\"middle\" x=\"14588.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 53->53 -->\n", + "<g id=\"edge55\" class=\"edge\">\n", + "<title>53->53</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M14870.79,-199.82C14885.61,-198.94 14896.19,-196.33 14896.19,-192 14896.19,-188.82 14890.48,-186.57 14881.58,-185.25\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14882.08,-181.68 14871.79,-184.18 14881.4,-188.65 14882.08,-181.68\"/>\n", + "<text text-anchor=\"middle\" x=\"14938.69\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 54 -->\n", + "<g id=\"node55\" class=\"node\">\n", + "<title>54</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"11527.29\" cy=\"-192\" rx=\"48.19\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"11527.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 54->46 -->\n", + "<g id=\"edge48\" class=\"edge\">\n", + "<title>54->46</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M11491.63,-179.47C11484.6,-177.46 11477.25,-175.52 11470.29,-174 11327.59,-142.84 11157.87,-122.76 11062.66,-113\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"11063.29,-109.44 11052.99,-111.92 11062.59,-116.41 11063.29,-109.44\"/>\n", + "<text text-anchor=\"middle\" x=\"11395.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 54->54 -->\n", + "<g id=\"edge11\" class=\"edge\">\n", + "<title>54->54</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M11575.42,-194.64C11585.83,-194.38 11593.39,-193.5 11593.39,-192 11593.39,-191.11 11590.73,-190.44 11586.38,-189.98\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"11586.6,-186.43 11576.42,-189.36 11586.2,-193.42 11586.6,-186.43\"/>\n", + "<text text-anchor=\"middle\" x=\"11677.39\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:equivalentProperty</text>\n", + "</g>\n", + "<!-- 54->54 -->\n", + "<g id=\"edge31\" class=\"edge\">\n", + "<title>54->54</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M11574.61,-196.04C11644.27,-198.81 11761.39,-197.47 11761.39,-192 11761.39,-186.81 11655.86,-185.34 11585.57,-187.57\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"11585.48,-184.11 11575.61,-187.96 11585.73,-191.11 11585.48,-184.11\"/>\n", + "<text text-anchor=\"middle\" x=\"11830.89\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:subPropertyOf</text>\n", + "</g>\n", + "<!-- 54->54 -->\n", + "<g id=\"edge115\" class=\"edge\">\n", + "<title>54->54</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M11573.99,-196.95C11676.02,-202.5 11900.39,-200.85 11900.39,-192 11900.39,-183.46 11691.09,-181.62 11584.87,-186.51\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"11584.81,-183.05 11574.99,-187.05 11585.16,-190.05 11584.81,-183.05\"/>\n", + "<text text-anchor=\"middle\" x=\"11942.89\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 55->1 -->\n", + "<g id=\"edge83\" class=\"edge\">\n", + "<title>55->1</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9886.2,-87.61C9871.28,-74.79 9850.32,-56.8 9833.62,-42.46\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9836.19,-39.2 9826.32,-35.34 9831.63,-44.51 9836.19,-39.2\"/>\n", + "<text text-anchor=\"middle\" x=\"9891.29\" y=\"-57.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 55->55 -->\n", + "<g id=\"edge18\" class=\"edge\">\n", + "<title>55->55</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9960.72,-107.6C9971.52,-107.3 9979.19,-106.43 9979.19,-105 9979.19,-104.13 9976.34,-103.47 9971.67,-103.01\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9971.9,-99.47 9961.72,-102.4 9971.51,-106.45 9971.9,-99.47\"/>\n", + "<text text-anchor=\"middle\" x=\"10021.69\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 55->55 -->\n", + "<g id=\"edge41\" class=\"edge\">\n", + "<title>55->55</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9959.41,-109.81C10006.62,-111.46 10064.19,-109.86 10064.19,-105 10064.19,-100.51 10015.06,-98.8 9970.35,-99.87\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9970.31,-96.4 9960.41,-100.19 9970.51,-103.4 9970.31,-96.4\"/>\n", + "<text text-anchor=\"middle\" x=\"10135.69\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:equivalentClass</text>\n", + "</g>\n", + "<!-- 55->55 -->\n", + "<g id=\"edge106\" class=\"edge\">\n", + "<title>55->55</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9958.65,-110.66C10047.3,-115.33 10207.19,-113.44 10207.19,-105 10207.19,-96.9 10059.85,-94.83 9969.62,-98.81\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9969.47,-95.36 9959.65,-99.34 9969.8,-102.35 9969.47,-95.36\"/>\n", + "<text text-anchor=\"middle\" x=\"10264.19\" y=\"-101.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:subClassOf</text>\n", + "</g>\n", + "<!-- 56 -->\n", + "<g id=\"node57\" class=\"node\">\n", + "<title>56</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"8722.29\" cy=\"-192\" rx=\"50.09\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"8722.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:byte</text>\n", + "</g>\n", + "<!-- 56->21 -->\n", + "<g id=\"edge109\" class=\"edge\">\n", + "<title>56->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M8685.37,-179.41C8678.1,-177.4 8670.5,-175.48 8663.29,-174 8548.34,-150.35 8518.39,-148.91 8401.29,-141 8035.9,-116.32 5353.65,-107.67 4837.93,-106.23\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.24,-102.72 4828.23,-106.2 4838.22,-109.72 4838.24,-102.72\"/>\n", + "<text text-anchor=\"middle\" x=\"8593.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 56->56 -->\n", + "<g id=\"edge86\" class=\"edge\">\n", + "<title>56->56</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M8767.44,-200.12C8780.37,-199.81 8790.34,-197.1 8790.34,-192 8790.34,-188.42 8785.41,-186.01 8777.99,-184.79\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"8778.71,-181.25 8768.44,-183.88 8778.1,-188.23 8778.71,-181.25\"/>\n", + "<text text-anchor=\"middle\" x=\"8832.84\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 57 -->\n", + "<g id=\"node58\" class=\"node\">\n", + "<title>57</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"8956.29\" cy=\"-192\" rx=\"63.09\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"8956.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:Literal</text>\n", + "</g>\n", + "<!-- 57->21 -->\n", + "<g id=\"edge116\" class=\"edge\">\n", + "<title>57->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M8910.35,-179.4C8901.73,-177.43 8892.76,-175.54 8884.29,-174 8770.55,-153.36 8741.63,-148.87 8626.29,-141 8237.15,-114.45 5372.49,-107.28 4838.03,-106.17\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.33,-102.66 4828.33,-106.14 4838.32,-109.66 4838.33,-102.66\"/>\n", + "<text text-anchor=\"middle\" x=\"8807.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 57->57 -->\n", + "<g id=\"edge34\" class=\"edge\">\n", + "<title>57->57</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9013.47,-200.01C9027.18,-199.39 9037.34,-196.72 9037.34,-192 9037.34,-188.65 9032.2,-186.33 9024.31,-185.04\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9024.76,-181.47 9014.47,-183.99 9024.08,-188.44 9024.76,-181.47\"/>\n", + "<text text-anchor=\"middle\" x=\"9079.84\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 58 -->\n", + "<g id=\"node59\" class=\"node\">\n", + "<title>58</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"9241.29\" cy=\"-192\" rx=\"100.98\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"9241.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:positiveInteger</text>\n", + "</g>\n", + "<!-- 58->21 -->\n", + "<g id=\"edge62\" class=\"edge\">\n", + "<title>58->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9168.74,-179.15C9088.62,-166.71 8955.66,-148.02 8840.29,-141 8428.26,-115.94 5389.02,-107.52 4837.88,-106.2\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.25,-102.69 4828.24,-106.17 4838.23,-109.69 4838.25,-102.69\"/>\n", + "<text text-anchor=\"middle\" x=\"9024.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 58->58 -->\n", + "<g id=\"edge99\" class=\"edge\">\n", + "<title>58->58</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9333.4,-199.61C9349.13,-198.57 9360.03,-196.04 9360.03,-192 9360.03,-188.97 9353.9,-186.79 9344.2,-185.45\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9344.69,-181.88 9334.4,-184.39 9344.01,-188.85 9344.69,-181.88\"/>\n", + "<text text-anchor=\"middle\" x=\"9402.53\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 59 -->\n", + "<g id=\"node60\" class=\"node\">\n", + "<title>59</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"9544.29\" cy=\"-192\" rx=\"81.49\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"9544.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">xsd:NMTOKEN</text>\n", + "</g>\n", + "<!-- 59->21 -->\n", + "<g id=\"edge61\" class=\"edge\">\n", + "<title>59->21</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9485.86,-179.05C9475.38,-177.17 9464.54,-175.39 9454.29,-174 9278.85,-150.2 9234.16,-149.06 9057.29,-141 8192.68,-101.61 5369.04,-104.84 4838.61,-105.82\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"4838.61,-102.32 4828.61,-105.84 4838.62,-109.32 4838.61,-102.32\"/>\n", + "<text text-anchor=\"middle\" x=\"9333.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 59->59 -->\n", + "<g id=\"edge68\" class=\"edge\">\n", + "<title>59->59</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M9618.3,-199.82C9633.03,-198.94 9643.54,-196.33 9643.54,-192 9643.54,-188.82 9637.87,-186.57 9629.03,-185.25\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"9629.6,-181.69 9619.3,-184.18 9628.91,-188.65 9629.6,-181.69\"/>\n", + "<text text-anchor=\"middle\" x=\"9686.04\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "<!-- 60 -->\n", + "<g id=\"node61\" class=\"node\">\n", + "<title>60</title>\n", + "<ellipse fill=\"none\" stroke=\"black\" cx=\"15074.29\" cy=\"-192\" rx=\"75.29\" ry=\"18\"/>\n", + "<text text-anchor=\"middle\" x=\"15074.29\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">rdfs:comment</text>\n", + "</g>\n", + "<!-- 60->40 -->\n", + "<g id=\"edge21\" class=\"edge\">\n", + "<title>60->40</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M15020.22,-179.14C15010.3,-177.23 15000.01,-175.41 14990.29,-174 14663.6,-126.48 14274.65,-112.16 14075.74,-107.85\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"14076.02,-104.34 14065.95,-107.62 14075.87,-111.33 14076.02,-104.34\"/>\n", + "<text text-anchor=\"middle\" x=\"14877.29\" y=\"-144.8\" font-family=\"Times,serif\" font-size=\"14.00\">rdf:type</text>\n", + "</g>\n", + "<!-- 60->60 -->\n", + "<g id=\"edge1\" class=\"edge\">\n", + "<title>60->60</title>\n", + "<path fill=\"none\" stroke=\"black\" d=\"M15142.71,-199.89C15157.21,-199.09 15167.69,-196.46 15167.69,-192 15167.69,-188.76 15162.16,-186.48 15153.57,-185.17\"/>\n", + "<polygon fill=\"black\" stroke=\"black\" points=\"15154,-181.6 15143.71,-184.11 15153.32,-188.57 15154,-181.6\"/>\n", + "<text text-anchor=\"middle\" x=\"15210.19\" y=\"-188.3\" font-family=\"Times,serif\" font-size=\"14.00\">owl:sameAs</text>\n", + "</g>\n", + "</g>\n", + "</svg>\n" + ], + "text/plain": [ + "<graphviz.graphs.Digraph at 0x7f754fd021a0>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%rdf graph draw --label awesome_graph" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "90089ab0-97b9-41ba-b9ec-e8811cc4640c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "<table><tr><th>item</th><th>itemLabel</th></tr><tr><td><http://www.wikidata.org/entity/Q27745008></td><td>Luca@en</td></tr><tr><td><http://www.wikidata.org/entity/Q27745009></td><td>Seri@en</td></tr><tr><td><http://www.wikidata.org/entity/Q27745011></td><td>Marble@en</td></tr><tr><td><http://www.wikidata.org/entity/Q28114532></td><td>Nala Cat@en</td></tr><tr><td><http://www.wikidata.org/entity/Q28665865></td><td>Myka@en</td></tr><tr><td><http://www.wikidata.org/entity/Q28792126></td><td>Gli@en</td></tr><tr><td><http://www.wikidata.org/entity/Q30600575></td><td>Orlando@en</td></tr><tr><td><http://www.wikidata.org/entity/Q42442324></td><td>Kiisu Miisu@en</td></tr><tr><td><http://www.wikidata.org/entity/Q43260736></td><td>Paddles@en</td></tr><tr><td><http://www.wikidata.org/entity/Q48895080></td><td>Hamilton@en</td></tr></table>" + ], + "text/plain": [ + "<IPython.core.display.HTML object>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%%rdf sparql --endpoint https://query.wikidata.org/sparql\n", + "SELECT ?item ?itemLabel \n", + "WHERE \n", + "{\n", + " ?item wdt:P31 wd:Q146.\n", + " SERVICE wikibase:label { bd:serviceParam wikibase:language \"[AUTO_LANGUAGE],en\". }\n", + "} LIMIT 10" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "63eb26cb-5197-4bef-8d0f-3dcc8d02cf8d", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}