You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sitc/lod/tutorial/sparql-vanGogh.ipynb

2514 lines
383 KiB
Plaintext

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# SPARQL about van Gogh\n",
"\n",
"<div style=\"color: red; font-style: italic;\">Note: when viewed through <span style=\"font-style: normal; font-weight: bold;\">nbviewer</span> or converted through <span style=\"font-style: normal; font-weight: bold;\">nbconvert</span> this notebook looks slightly different than when rendered by a running <em>sparqlkernel</em>. See a <a href=\"http://htmlpreview.github.io/?https://github.com/paulovn/sparql-kernel/blob/master/examples/sparql-vanGogh.html\">converted version</a> for an example more similar to the actual look in a \"live\" kernel.</div>\n",
"\n",
"We are going to use some the [DBPedia SPARQL endpoint](http://wiki.dbpedia.org/OnlineAccess#1.1%20Public%20SPARQL%20Endpoint) to do some queries related to _Vincent van Gogh_.\n",
"\n",
"First we define the endpoint and the preferred language for labels"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Endpoint set to: http://dbpedia.org/sparql</div><div class=\"magic\">Label preferred languages: ['en']</div><div class=\"magic\">Logging set to DEBUG</div></div>"
],
"text/plain": [
"Endpoint set to: http://dbpedia.org/sparql\n",
"Label preferred languages: ['en']\n",
"Logging set to DEBUG\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%endpoint http://dbpedia.org/sparql\n",
"%lang en\n",
"\n",
"# This is optional, it would increase the log level.\n",
"# The default logfile (unless changed upon kernel installation) is [TMPDIR]/sparqlkernel.log, \n",
"# where [TMPDIR] is the platform default temporal directory\n",
"%log debug"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Now let's find out the entity URI for _van Gogh_ in DBPedia. We search entities that are persons and whose label contains `van Gogh` (case insensitive).\n",
"\n",
"Note that the DBPedia endpoint has a set of [predefined namespace prefixes](http://dbpedia.org/sparql?nsdecl) that we can use without the need to define them in the query, such as `rdfs:` or `foaf:` so we could remove them from the query without problem."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"ename": "SyntaxError",
"evalue": "invalid syntax (<ipython-input-1-b95b96856f67>, line 4)",
"output_type": "error",
"traceback": [
"\u001b[0;36m File \u001b[0;32m\"<ipython-input-1-b95b96856f67>\"\u001b[0;36m, line \u001b[0;32m4\u001b[0m\n\u001b[0;31m PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mSyntaxError\u001b[0m\u001b[0;31m:\u001b[0m invalid syntax\n"
]
}
],
"source": [
"%format json\n",
"%display table \n",
"\n",
"PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n",
"PREFIX foaf: <http://xmlns.com/foaf/0.1/>\n",
"SELECT ?person ?name\n",
"WHERE {\n",
" ?person a foaf:Person .\n",
" ?person rdfs:label ?name\n",
" FILTER regex(?name,\"van gogh\",\"i\")\n",
" FILTER langMatches(lang(?name),\"en\")\n",
"} LIMIT 20"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"It is clear from the result that we want the <http://dbpedia.org/resource/Vincent_van_Gogh> DBPedia entity (we can click on the link for confirmation, and it will lead us to a DBPedia web page describing the resource).\n",
"\n",
"## Fact finding\n",
"\n",
"Now that we found his URI, let's search for places, dates and people related with van Gogh.\n",
"\n",
"In this query we also set the table to show the data type for each result"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Return format: JSON</div><div class=\"magic\">Display: table<br/>Show Types: on</div></div>"
],
"text/plain": [
"Return format: JSON\n",
"Display: table\n",
"Show Types: on\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><table><tr class=hdr><th>prop</th><th>type</th>\n",
"<th>value</th><th>type</th></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/ontology/birthDate\" target=\"_other\">http://dbpedia.org/ontology/birthDate</a></td><td class=typ>uri</td>\n",
"<td class=val>1853-03-30</td><td class=typ>typed-literal</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/ontology/birthPlace\" target=\"_other\">http://dbpedia.org/ontology/birthPlace</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Zundert\" target=\"_other\">http://dbpedia.org/resource/Zundert</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/ontology/birthPlace\" target=\"_other\">http://dbpedia.org/ontology/birthPlace</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Netherlands\" target=\"_other\">http://dbpedia.org/resource/Netherlands</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/ontology/deathDate\" target=\"_other\">http://dbpedia.org/ontology/deathDate</a></td><td class=typ>uri</td>\n",
"<td class=val>1890-07-29</td><td class=typ>typed-literal</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/ontology/deathPlace\" target=\"_other\">http://dbpedia.org/ontology/deathPlace</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/French_Third_Republic\" target=\"_other\">http://dbpedia.org/resource/French_Third_Republic</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/ontology/deathPlace\" target=\"_other\">http://dbpedia.org/ontology/deathPlace</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Auvers-sur-Oise\" target=\"_other\">http://dbpedia.org/resource/Auvers-sur-Oise</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/ontology/influencedBy\" target=\"_other\">http://dbpedia.org/ontology/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Israel_Tsvaygenbaum\" target=\"_other\">http://dbpedia.org/resource/Israel_Tsvaygenbaum</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/ontology/influencedBy\" target=\"_other\">http://dbpedia.org/ontology/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Victor_Stabin\" target=\"_other\">http://dbpedia.org/resource/Victor_Stabin</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/ontology/influencedBy\" target=\"_other\">http://dbpedia.org/ontology/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Leo_Marchutz\" target=\"_other\">http://dbpedia.org/resource/Leo_Marchutz</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/ontology/influencedBy\" target=\"_other\">http://dbpedia.org/ontology/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Annette_P._Jimerson\" target=\"_other\">http://dbpedia.org/resource/Annette_P._Jimerson</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/ontology/influencedBy\" target=\"_other\">http://dbpedia.org/ontology/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Aung_Khin\" target=\"_other\">http://dbpedia.org/resource/Aung_Khin</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/ontology/influencedBy\" target=\"_other\">http://dbpedia.org/ontology/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Joan_Glass\" target=\"_other\">http://dbpedia.org/resource/Joan_Glass</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/ontology/influencedBy\" target=\"_other\">http://dbpedia.org/ontology/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Chuck_Connelly\" target=\"_other\">http://dbpedia.org/resource/Chuck_Connelly</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/ontology/relative\" target=\"_other\">http://dbpedia.org/ontology/relative</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Theo_van_Gogh_(film_director)\" target=\"_other\">http://dbpedia.org/resource/Theo_van_Gogh_(film_director)</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/property/influenced\" target=\"_other\">http://dbpedia.org/property/influenced</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Adolphe_Monticelli\" target=\"_other\">http://dbpedia.org/resource/Adolphe_Monticelli</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/property/influencedBy\" target=\"_other\">http://dbpedia.org/property/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Axel_Törneman\" target=\"_other\">http://dbpedia.org/resource/Axel_Törneman</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/property/influencedBy\" target=\"_other\">http://dbpedia.org/property/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Hayley_Lever\" target=\"_other\">http://dbpedia.org/resource/Hayley_Lever</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/property/influencedBy\" target=\"_other\">http://dbpedia.org/property/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Arman\" target=\"_other\">http://dbpedia.org/resource/Arman</a></td><td class=typ>uri</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/property/influencedBy\" target=\"_other\">http://dbpedia.org/property/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Roger_Ing\" target=\"_other\">http://dbpedia.org/resource/Roger_Ing</a></td><td class=typ>uri</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/property/influencedBy\" target=\"_other\">http://dbpedia.org/property/influencedBy</a></td><td class=typ>uri</td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Purvis_Young\" target=\"_other\">http://dbpedia.org/resource/Purvis_Young</a></td><td class=typ>uri</td></tr></table><div class=\"tinfo\">Total: 35, Shown: 20</div></div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%format json\n",
"%display table withtypes\n",
"\n",
"# We might have more than one triple pointing to the same object, so we group by object\n",
"# and take one arbitrary predicate\n",
"\n",
"SELECT (SAMPLE(?pred) AS ?prop) ?value\n",
"WHERE {\n",
"\n",
" # Places and dates\n",
" {\n",
" dbr:Vincent_van_Gogh ?pred ?value .\n",
" { ?pred rdfs:range xsd:date }\n",
" UNION\n",
" { ?pred rdfs:range dbo:Place }\n",
" }\n",
" # People van Gogh relates to\n",
" UNION \n",
" { \n",
" dbr:Vincent_van_Gogh ?pred ?value .\n",
" ?value a foaf:Person \n",
" }\n",
" # People related to van Gogh\n",
" UNION \n",
" { \n",
" ?value ?pred dbr:Vincent_van_Gogh .\n",
" ?value a foaf:Person \n",
" }\n",
"\n",
"} GROUP BY ?value ORDER BY ?prop\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"\n",
"## Find a painting\n",
"Now we search for a van Gogh painting whose title contains _\"night\"_"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Return format: JSON</div><div class=\"magic\">Display: table</div></div>"
],
"text/plain": [
"Return format: JSON\n",
"Display: table\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><table><tr class=hdr><th>picture</th>\n",
"<th>name</th></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val>Starry Night Over the Rhone</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Cafe_Terrace_at_Night\" target=\"_other\">http://dbpedia.org/resource/Cafe_Terrace_at_Night</a></td>\n",
"<td class=val>Cafe Terrace at Night</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/The_Night_Café\" target=\"_other\">http://dbpedia.org/resource/The_Night_Café</a></td>\n",
"<td class=val>The Night Café</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/The_Starry_Night\" target=\"_other\">http://dbpedia.org/resource/The_Starry_Night</a></td>\n",
"<td class=val>The Starry Night</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/White_House_at_Night\" target=\"_other\">http://dbpedia.org/resource/White_House_at_Night</a></td>\n",
"<td class=val>White House at Night</td></tr></table><div class=\"tinfo\">Total: 5, Shown: 5</div></div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%format json\n",
"%display table \n",
"\n",
"\n",
"PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n",
"PREFIX foaf: <http://xmlns.com/foaf/0.1/>\n",
"SELECT DISTINCT (?picture) ?name\n",
"WHERE {\n",
" ?picture ?p1 dbr:Vincent_van_Gogh .\n",
" ?picture rdfs:label ?name .\n",
" FILTER regex(?name,\"night\", \"i\")\n",
" FILTER langMatches(lang(?name),\"en\") \n",
"}"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Just to show another possibility, we repeat the same query but indicating `raw` display format"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Display: raw</div></div>"
],
"text/plain": [
"Display: raw\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"{'head': {'link': [], 'vars': ['picture', 'name']},\n",
" 'results': {'bindings': [{'name': {'type': 'literal',\n",
" 'value': 'Starry Night Over the Rhone',\n",
" 'xml:lang': 'en'},\n",
" 'picture': {'type': 'uri',\n",
" 'value': 'http://dbpedia.org/resource/Starry_Night_Over_the_Rhone'}},\n",
" {'name': {'type': 'literal',\n",
" 'value': 'Cafe Terrace at Night',\n",
" 'xml:lang': 'en'},\n",
" 'picture': {'type': 'uri',\n",
" 'value': 'http://dbpedia.org/resource/Cafe_Terrace_at_Night'}},\n",
" {'name': {'type': 'literal',\n",
" 'value': 'The Night Café',\n",
" 'xml:lang': 'en'},\n",
" 'picture': {'type': 'uri',\n",
" 'value': 'http://dbpedia.org/resource/The_Night_Café'}},\n",
" {'name': {'type': 'literal',\n",
" 'value': 'The Starry Night',\n",
" 'xml:lang': 'en'},\n",
" 'picture': {'type': 'uri',\n",
" 'value': 'http://dbpedia.org/resource/The_Starry_Night'}},\n",
" {'name': {'type': 'literal',\n",
" 'value': 'White House at Night',\n",
" 'xml:lang': 'en'},\n",
" 'picture': {'type': 'uri',\n",
" 'value': 'http://dbpedia.org/resource/White_House_at_Night'}}],\n",
" 'distinct': False,\n",
" 'ordered': True}}"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%display raw \n",
"\n",
"PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n",
"PREFIX foaf: <http://xmlns.com/foaf/0.1/>\n",
"SELECT DISTINCT (?picture) ?name\n",
"WHERE {\n",
" ?picture ?p1 dbr:Vincent_van_Gogh .\n",
" ?picture rdfs:label ?name .\n",
" FILTER regex(?name,\"night\", \"i\")\n",
" FILTER langMatches(lang(?name),\"en\") \n",
"}"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Describe a painting\n",
"\n",
"Now we find out all that DBPedia knows about one of those paintings, _Starry Night Over the Rhone_"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Return format: N3</div><div class=\"magic\">Display: table</div><div class=\"magic\">Label preferred languages: ['en']</div><div class=\"magic\">Result maximum size: unlimited</div></div>"
],
"text/plain": [
"Return format: N3\n",
"Display: table\n",
"Label preferred languages: ['en']\n",
"Result maximum size: unlimited\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><table><tr class=hdr><th>subject</th>\n",
"<th>predicate</th>\n",
"<th>object</th></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/Art102743547\" target=\"_other\">http://dbpedia.org/class/yago/Art102743547</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing\" target=\"_other\">http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/ns/prov#wasDerivedFrom\" target=\"_other\">http://www.w3.org/ns/prov#wasDerivedFrom</a></td>\n",
"<td class=val><a href=\"http://en.wikipedia.org/wiki/Starry_Night_Over_the_Rhone?oldid=676277356\" target=\"_other\">http://en.wikipedia.org/wiki/Starry_Night_Over_the_Rhone?oldid=676277356</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/type\" target=\"_other\">http://dbpedia.org/property/type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Oil_painting\" target=\"_other\">http://dbpedia.org/resource/Oil_painting</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://xmlns.com/foaf/0.1/isPrimaryTopicOf\" target=\"_other\">http://xmlns.com/foaf/0.1/isPrimaryTopicOf</a></td>\n",
"<td class=val><a href=\"http://en.wikipedia.org/wiki/Starry_Night_Over_the_Rhone\" target=\"_other\">http://en.wikipedia.org/wiki/Starry_Night_Over_the_Rhone</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/artist\" target=\"_other\">http://dbpedia.org/property/artist</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Vincent_van_Gogh\" target=\"_other\">http://dbpedia.org/resource/Vincent_van_Gogh</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://purl.org/voc/vrank#hasRank\" target=\"_other\">http://purl.org/voc/vrank#hasRank</a></td>\n",
"<td class=val>fe92858e2aced48778456b33b2d46291ab1</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/title\" target=\"_other\">http://dbpedia.org/property/title</a></td>\n",
"<td class=val>Starry Night over the Rhone</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/city\" target=\"_other\">http://dbpedia.org/property/city</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Paris\" target=\"_other\">http://dbpedia.org/resource/Paris</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/thumbnail\" target=\"_other\">http://dbpedia.org/ontology/thumbnail</a></td>\n",
"<td class=val><a href=\"http://commons.wikimedia.org/wiki/Special:FilePath/Starry_Night_Over_the_Rhone.jpg?width=300\" target=\"_other\">http://commons.wikimedia.org/wiki/Special:FilePath/Starry_Night_Over_the_Rhone.jpg?width=300</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/Artwork\" target=\"_other\">http://dbpedia.org/ontology/Artwork</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/2000/01/rdf-schema#label\" target=\"_other\">http://www.w3.org/2000/01/rdf-schema#label</a></td>\n",
"<td class=val>Starry Night Over the Rhone</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/PhysicalEntity100001930\" target=\"_other\">http://dbpedia.org/class/yago/PhysicalEntity100001930</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/2002/07/owl#Thing\" target=\"_other\">http://www.w3.org/2002/07/owl#Thing</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/Work\" target=\"_other\">http://dbpedia.org/ontology/Work</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/catalogue\" target=\"_other\">http://dbpedia.org/property/catalogue</a></td>\n",
"<td class=val>F474; JH1592</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://purl.org/dc/terms/subject\" target=\"_other\">http://purl.org/dc/terms/subject</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Category:Collections_of_the_Musée_d'Orsay\" target=\"_other\">http://dbpedia.org/resource/Category:Collections_of_the_Musée_d'Orsay</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/1888Paintings\" target=\"_other\">http://dbpedia.org/class/yago/1888Paintings</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/Artifact100021939\" target=\"_other\">http://dbpedia.org/class/yago/Artifact100021939</a></td></tr><tr class=even><td class=val><a href=\"http://en.wikipedia.org/wiki/Starry_Night_Over_the_Rhone\" target=\"_other\">http://en.wikipedia.org/wiki/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://xmlns.com/foaf/0.1/primaryTopic\" target=\"_other\">http://xmlns.com/foaf/0.1/primaryTopic</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/VincentVanGoghPaintingsOfArles\" target=\"_other\">http://dbpedia.org/class/yago/VincentVanGoghPaintingsOfArles</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/imperialUnit\" target=\"_other\">http://dbpedia.org/property/imperialUnit</a></td>\n",
"<td class=val>in</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/author\" target=\"_other\">http://dbpedia.org/ontology/author</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Vincent_van_Gogh\" target=\"_other\">http://dbpedia.org/resource/Vincent_van_Gogh</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://xmlns.com/foaf/0.1/name\" target=\"_other\">http://xmlns.com/foaf/0.1/name</a></td>\n",
"<td class=val>Starry Night over the Rhone</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/museum\" target=\"_other\">http://dbpedia.org/ontology/museum</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Musée_d'Orsay\" target=\"_other\">http://dbpedia.org/resource/Musée_d'Orsay</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/imageFile\" target=\"_other\">http://dbpedia.org/property/imageFile</a></td>\n",
"<td class=val>Starry Night Over the Rhone.jpg</td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/metricUnit\" target=\"_other\">http://dbpedia.org/property/metricUnit</a></td>\n",
"<td class=val>cm</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://schema.org/CreativeWork\" target=\"_other\">http://schema.org/CreativeWork</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/Painting103876519\" target=\"_other\">http://dbpedia.org/class/yago/Painting103876519</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhône\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhône</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/wikiPageRedirects\" target=\"_other\">http://dbpedia.org/ontology/wikiPageRedirects</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/2000/01/rdf-schema#comment\" target=\"_other\">http://www.w3.org/2000/01/rdf-schema#comment</a></td>\n",
"<td class=val>Starry Night Over the Rhone (September 1888) is one of Vincent van Gogh's paintings of Arles at night time. It was painted at a spot on the bank of the Rhone River that was only a one or two-minute walk from the Yellow House on the Place Lamartine which Van Gogh was renting at the time.</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://purl.org/dc/terms/subject\" target=\"_other\">http://purl.org/dc/terms/subject</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Category:1888_paintings\" target=\"_other\">http://dbpedia.org/resource/Category:1888_paintings</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://www.wikidata.org/entity/Q386724\" target=\"_other\">http://www.wikidata.org/entity/Q386724</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/Object100002684\" target=\"_other\">http://dbpedia.org/class/yago/Object100002684</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/GraphicArt103453809\" target=\"_other\">http://dbpedia.org/class/yago/GraphicArt103453809</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/Creation103129123\" target=\"_other\">http://dbpedia.org/class/yago/Creation103129123</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/wikiPageRedirects\" target=\"_other\">http://dbpedia.org/ontology/wikiPageRedirects</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://xmlns.com/foaf/0.1/depiction\" target=\"_other\">http://xmlns.com/foaf/0.1/depiction</a></td>\n",
"<td class=val><a href=\"http://commons.wikimedia.org/wiki/Special:FilePath/Starry_Night_Over_the_Rhone.jpg\" target=\"_other\">http://commons.wikimedia.org/wiki/Special:FilePath/Starry_Night_Over_the_Rhone.jpg</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_(disambiguation)\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_(disambiguation)</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/wikiPageDisambiguates\" target=\"_other\">http://dbpedia.org/ontology/wikiPageDisambiguates</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/PaintingsByVincentVanGogh\" target=\"_other\">http://dbpedia.org/class/yago/PaintingsByVincentVanGogh</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\" target=\"_other\">http://www.w3.org/1999/02/22-rdf-syntax-ns#type</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/class/yago/Whole100003553\" target=\"_other\">http://dbpedia.org/class/yago/Whole100003553</a></td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://purl.org/dc/terms/subject\" target=\"_other\">http://purl.org/dc/terms/subject</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Category:Paintings_by_Vincent_van_Gogh\" target=\"_other\">http://dbpedia.org/resource/Category:Paintings_by_Vincent_van_Gogh</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/ontology/abstract\" target=\"_other\">http://dbpedia.org/ontology/abstract</a></td>\n",
"<td class=val>Starry Night Over the Rhone (September 1888) is one of Vincent van Gogh's paintings of Arles at night time. It was painted at a spot on the bank of the Rhone River that was only a one or two-minute walk from the Yellow House on the Place Lamartine which Van Gogh was renting at the time. The night sky and the effects of light at night provided the subject for some of his more famous paintings, including Cafe Terrace at Night (painted earlier the same month) and the later canvas from Saint-Rémy, The Starry Night.A sketch of the painting is included in a letter van Gogh sent to his friend Eugène Boch on October 2, 1888.The painting was first exhibited in 1889 at the annual exhibition of the Société des Artistes Indépendants in Paris, together with the Irises. The latter was added by Theo, while Vincent had proposed one of his paintings from the public gardens in Arles, most probably the version now in the Phillips Collection.</td></tr><tr class=even><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/property/museum\" target=\"_other\">http://dbpedia.org/property/museum</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Musée_d'Orsay\" target=\"_other\">http://dbpedia.org/resource/Musée_d'Orsay</a></td></tr><tr class=odd><td class=val><a href=\"http://dbpedia.org/resource/Starry_Night_Over_the_Rhone\" target=\"_other\">http://dbpedia.org/resource/Starry_Night_Over_the_Rhone</a></td>\n",
"<td class=val><a href=\"http://purl.org/dc/terms/subject\" target=\"_other\">http://purl.org/dc/terms/subject</a></td>\n",
"<td class=val><a href=\"http://dbpedia.org/resource/Category:Vincent_van_Gogh_paintings_of_Arles\" target=\"_other\">http://dbpedia.org/resource/Category:Vincent_van_Gogh_paintings_of_Arles</a></td></tr></table><div class=\"tinfo\">Shown: all, Total rows: 80</div></div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"%format n3\n",
"%display table\n",
"%lang en\n",
"%show all\n",
"\n",
"PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n",
"PREFIX foaf: <http://xmlns.com/foaf/0.1/>\n",
"CONSTRUCT { ?s1 ?p1 dbr:Starry_Night_Over_the_Rhone .\n",
" dbr:Starry_Night_Over_the_Rhone ?p2 ?o1 .\n",
" }\n",
"WHERE {\n",
" { ?s1 ?p1 dbr:Starry_Night_Over_the_Rhone }\n",
" UNION\n",
" { dbr:Starry_Night_Over_the_Rhone ?p2 ?o1 }\n",
" \n",
" FILTER ( ?p1 != owl:sameAs && ?p2 != owl:sameAs)\n",
"}\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Similar data could be obtained by asking the endpoint to `DESCRIBE` the resource. Let's do this, but for a twist let's ask the kernel to draw a graph with the results (for this to work, [Graphviz](http://www.graphviz.org/) should be installed in the system).\n",
"\n",
"We generate a PNG here. Note that `svg` is a much better format than `png`, if the browser supports it (better quality, and hyperlinked nodes)."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Return format: N3</div><div class=\"magic\">Display: png</div><div class=\"magic\">Label preferred languages: ['en']</div></div>"
],
"text/plain": [
"Return format: N3\n",
"Display: png\n",
"Label preferred languages: ['en']\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAFvkAAAEVCAIAAADrn9oCAAAABmJLR0QA/wD/AP+gvaeTAAAgAElEQVR4nOzdeZiddX03/s99ttkySWaSmJCQGEwAIaIPiFoQF8BatIqUomyl9qHVShEJtFR4oLghVbAivVAp1ta68KOP1p0qCoiouDwRlUX2QBaykGQmM5ntrPfvj5lmhmFIAoQ5s7xeF9dc53zv+3zv9/39HviH+3qfJE3TAAAAAAAAAAAAAAAAAAAAAAB4nmXqHQAAAAAAAAAAAAAAAAAAAAAAmBZ0nQAAAAAAAAAAAAAAAAAAAAAA40HXCQAAAAAAAAAAAAAAAAAAAAAwHnSdAAAAAAAAAAAAAAAAAAAAAADjQdcJAAAAAAAAAAAAAAAAAAAAADAedJ0AAAAAAAAAAAAAAAAAAAAAAONB1wkAAAAAAAAAAAAAAAAAAAAAMB50nQAAAAAAAAAAAAAAAAAAAAAA40HXCQAAAAAAAAAAAAAAAAAAAAAwHnSdAAAAAAAAAAAAAAAAAAAAAADjQdcJAAAAAAAAAAAAAAAAAAAAADAedJ0AAAAAAAAAAAAAAAAAAAAAAONB1wkAAAAAAAAAAAAAAAAAAAAAMB50nQAAAAAAAABMCElS7wQ8P+zsdGb3AQAAAAAAAABgFF0nAAAAAAAAAONB5cFUZWenM7sPAAAAAAAAAADPlK4TAAAAAAAAYIro6oqLLooDDojm5mhvjxNOiFtuGTo0Pn0ESRLHHRdpOnpw0KjxZzTtLtxzT7z5zdHaGq2t8eY3x913P8urTGTTc2cZZPcBAAAAAAAAAGCK0XUCAAAAAAAATBEnnxzbtsWNN8b27fHAA3HaafGRj4x3hvb2+PSnx+9yDz8cxxwTb3hDPPRQPPRQ/OEfxrHHxsMPj1+A8TENd5ad7D4AAAAAAAAAAEwxuk4AAAAAAACAKeL22+PKK2P//aNQiHnz4h3viNtui4hIkqG/gy8i4sEH46STYs6cmDUrTjwxtm4dGk+SuOqqWLw4MpnRb1/72rjhhuFrrV0bCxdGV9foDJ/5TFxzTdx//xjxdl69WIyzzoo5c2LBgrjiiuHxiLj22li6NJqa4ogj4p57xg4/0gc/GH/zN3H++bFgQSxYEOedF2edFR/6UHR0xLx50dk5fGZHR8yfH52dUavFZZfFfvtFe3uceWb09o597xPKNNzZYjFWrhza1pUro1icanu656bh7gMAAAAAAAAAwNQ2mR9oAgAAAAAAABjh9a+Pd787fvaz6O9/0niaDv0dfBERb397nH12rF8fa9fGokVx0UXDJ//4x/HLX0atNvrtxRfHhz88PP7hD8e558asWaMzzJ4d114bZ5wR5fLT5rzsslizJu6+O+68M2655UmHbropbrsttm6NN70p3vOescOPdPPNccYZTxr58z+Pm2+O9vY46aS47rrh8euui9NOi7a2+NSn4rbb4tZb45FHolyOSy992nufOKbhzn70o3HvvbFqVaxaFXfdFZdfPtX2dM9Nw90HAAAAAAAAAICpLUk9OAMAAAAAAABMCd3d8YlPxLe/HQ88EAsXxoknxiWXDNUWJMnTdgp0d8eKFbFu3dBpjz0WL3zh0KFRb1/5yli5Mk47LR56KI45Jh54IJqbnzTVzqv8/d9HLheXX/6kwZ0vli2LG2+MF784IuL3v48VK4ZP2LgxFiyIiOjri7lzo69vN+FzuejpicbG4ZH+/pg5M8rluP/++KM/ikceiVwuKpXYf//48Y9jyZI46KD45jfjwAMjIjZvjle9Kh57bIybnVCm4c4uWxbf+U4cfHBExD33xAknxMMPT6k93XPTcPcBAAAAAAAAAGBq03UCAAAAAAAATDVpGr//fVx5ZWzdGt/9bsRTagVWrYr3vz9+85vo7IyIyGajUhk6rVaLJBk6bdTbb30r3v/+uPfeOOOMOOKIOOec0dfdeZVSKY48Mj71qTjqqDE6EZqaYvv2aGiIiBgYiKam0SeMmm0XnQjz58cdd8SyZcMjjzwSRx0VGzdGRLz5zfHOd8bJJ8cNN8R3vhNf+UpERHNz9PcPn5/JRLU6xs1OTNNnZ5uaorNzqMVmYCDa2oZ2bert6Z6bPrsPAAAAAAAAAABTW6beAQAAAAAAAAD2siSJFSviU5+K228fHhnplFPine+Mhx+OSiW2bRsqhhjzzJFvjz8+CoW46KL4+c/jr/96VwEKhfjiF+Pd744dO8Y4unBhPPro0OvVq/fodp7OscfGl770pJEvfjGOPXbo9cqVcfXVERFXXx1/93dDg0uWxKOPRpoO/bOLe5+Aps/OLlw4PMPDD8eiRUOvp96e7rnps/sAAAAAAAAAADC16ToBAAAAAAAApojXvz7+7/+NzZujXI5HH40LL4yjjho6NHdu3Hff8Jm9vTFzZrS0xJo18e537+n8SRIXXxxXXhmXXBKFwm5OPvjgeM974pxzxjh06qlx/vmxYUNs2BDnn7/7644KP9IHPhCf/nRcdVVs2hSbNsVVV8VnPhOXXjp09I1vjO7uuOaamDEjDj10aPCss+Jd74r77otSKe6+O045ZfcB6m4a7uypp8a558b69bF+fZx7bpx66tD4lNnTPTcNdx8AAAAAAAAAAKY2XScAAAAAAADAFHHppXHDDXHQQTFzZhx7bORy8eUvDx268MI48shIkqG3n/98XHhhtLbG0UfH6173DC6Rzcb++8c737lHJ59zTmzaNMb4JZfE4sXxkpfEoYfGq18d+fxu5hkVfqQDD4xbbokf/CCWL4/ly+Omm+Lmm+OAA4ZPWLkyzj03LrjgSamOPz5OPDFmzozTTx8u0ZjIpuHOXnJJHHRQHH54HH54rFgRF188fGhq7Omem4a7DwAAAAAAAAAAU1uSpmm9MwAAAAAAAABMDscfH6eeuje7JO66K044IVav3msT8uzY2enM7gMAAAAAAAAAwHjK1DsAAAAAAAAAwCRQq8V118Vjj8XJJ++F2c47LzZtijVr4vzz44QT9sKEPGt2djqz+wAAAAAAAAAAMP5y9Q4AAAAAAAAAMAlks7F0aXz1q5HZG78osXRpvOIVUSrF294Wl122FybkWbOz05ndBwAAAAAAAACA8ZekaVrvDAAAAAAAAAAAAAAAAAAAAADA1Lc3fpkIAAAAAAAAYOpKkskxJ3vOntbX5ZfHW94y9qHxWcZJt1lvfnN87GP1DgEAAAAAAAAAAHtJkqZpvTMAAAAAAAAATFxJEnv9f6vuYs7+/jj22EjTuPXWaGray9dl0DjvKSP19sbSpXHHHbH//mMc3bmMz+t6Pt3kz/cmPuv5778/XvvaWLPGfxMAAAAAAAAAAJgKMvUOAAAAAAAAADCxJMnenGrwn7lz4y1viYce2v1H3ve+uOCCuOCCeN/79loM6runjPT1r8eRR45ddDJSXYpjno8GnL0y/4tfHIcfHt/61nNPBAAAAAAAAAAA9ZekflgKAAAAAAAAYIQkeVIlwai3z26qbdvi6qvj5pvjjjue65w8C/Z04njHO+L44+PP/mzso+OzjOO2WXvxQl/4QvzgB3H99XtnNgAAAAAAAAAAqKNMvQMAAAAAAAAATCBJMvR38MWga6+NpUujqSmOOCLuuWdosFaLyy6L/faL9vY488zo7d3VtHPmxAUXxG9/u5s5i8VYuTIWLIgFC2LlyigWh1M99wzTlj2dUFatiiOOGH5bKsXZZ8ecObFgQVx55fD4zs265ZY47LBoaoqlS+Nf/3Vo8MEH46STYs6cmDUrTjwxtm4d/tRnPxsvelE0NMRLXhI//Wl84QtxwAFDi3z//cPzX3FFzJ8fc+bEe98bpdLoixaLcdZZQ6muuGJ4fORXaOTbMfM89Ys3cv5n9K2IiFe/On71q92uLgAAAAAAAAAATAK6TgAAAAAAAACGpenQ38EXg266KW67LbZujTe9Kd7znqHBT30qbrstbr01HnkkyuW49NJdTdvREVdcEYccsps5P/rRuPfeWLUqVq2Ku+6Kyy/fmxmmLXs6oWzaFPvsM/z28svjwQfjrrti1ar43vfGOP+MM+Lii2P
},
"metadata": {
"image/png": {
"height": 2200,
"unconfined": true,
"width": 5500
}
},
"output_type": "display_data"
}
],
"source": [
"%format n3\n",
"%display diagram png\n",
"%lang en\n",
"\n",
"PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>\n",
"PREFIX foaf: <http://xmlns.com/foaf/0.1/>\n",
"DESCRIBE dbr:Starry_Night_Over_the_Rhone"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Locate paintings\n",
"\n",
"Finally, to print out a slightly more complex graph, we will construct one with all of van Gogh's paintings, together with their location and the country they are in.\n",
"\n",
"This one we render as SVG; this has the said advantage of better quality (being a vector format). Plus nodes and edges can contain hyperlinks, so when they are URIs they point to the full URL (note that, unless the `withliterals` option is used, **all** represented nodes will be URIs)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"krn-spql\"><div class=\"magic\">Return format: N3</div><div class=\"magic\">Display: svg</div></div>"
],
"text/plain": [
"Return format: N3\n",
"Display: svg\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"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 2.36.0 (20140111.2315)\n",
" -->\n",
"<!-- Title: %3 Pages: 1 -->\n",
"<svg class=\"unconfined\" width=\"4275pt\" height=\"290pt\"\n",
" viewBox=\"0.00 0.00 4275.00 290.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 286)\">\n",
"<title>%3</title>\n",
"<polygon fill=\"white\" stroke=\"none\" points=\"-4,4 -4,-286 4271,-286 4271,4 -4,4\"/>\n",
"<!-- node0 -->\n",
"<g id=\"node1\" class=\"node\"><title>node0</title>\n",
"<g id=\"a_node1\"><a xlink:href=\"http://dbpedia.org/resource/Worcester_Art_Museum\" xlink:title=\"Worcester Art\\nMuseum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"214\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Worcester Art</text>\n",
"<text text-anchor=\"middle\" x=\"214\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node1 -->\n",
"<g id=\"node2\" class=\"node\"><title>node1</title>\n",
"<g id=\"a_node2\"><a xlink:href=\"http://dbpedia.org/resource/Massachusetts\" xlink:title=\"Massachusetts\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"318\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Massachusetts</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node0&#45;&gt;node1 -->\n",
"<g id=\"edge1\" class=\"edge\"><title>node0&#45;&gt;node1</title>\n",
"<g id=\"a_edge1\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M236.493,-163.952C243.982,-158.259 252.361,-151.869 260,-146 269.13,-138.985 279.04,-131.317 288.041,-124.33\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"296.005,-118.144 290.868,-127.832 292.056,-121.211 288.108,-124.279 288.108,-124.279 288.108,-124.279 292.056,-121.211 285.347,-120.725 296.005,-118.144 296.005,-118.144\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge1&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"295\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node37 -->\n",
"<g id=\"node38\" class=\"node\"><title>node37</title>\n",
"<g id=\"a_node38\"><a xlink:href=\"http://dbpedia.org/resource/Worcester,_Massachusetts\" xlink:title=\" Massachusetts\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"209\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\"> Massachusetts</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node0&#45;&gt;node37 -->\n",
"<g id=\"edge55\" class=\"edge\"><title>node0&#45;&gt;node37</title>\n",
"<g id=\"a_edge55\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M212.915,-163.641C212.269,-153.297 211.434,-139.941 210.701,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"210.066,-118.05 215.181,-127.75 210.378,-123.04 210.69,-128.031 210.69,-128.031 210.69,-128.031 210.378,-123.04 206.198,-128.311 210.066,-118.05 210.066,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge55&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"234\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node11 -->\n",
"<g id=\"node12\" class=\"node\"><title>node11</title>\n",
"<g id=\"a_node12\"><a xlink:href=\"http://dbpedia.org/resource/United_States\" xlink:title=\"United\\nStates\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"530\" y=\"-21\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">United</text>\n",
"<text text-anchor=\"middle\" x=\"530\" y=\"-10\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">States</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node1&#45;&gt;node11 -->\n",
"<g id=\"edge51\" class=\"edge\"><title>node1&#45;&gt;node11</title>\n",
"<g id=\"a_edge51\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M342.02,-81.8658C356.042,-72.5227 374.392,-61.3901 392,-54 424.883,-40.199 464.535,-30.8369 492.881,-25.294\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"502.78,-23.4236 493.789,-29.7022 497.867,-24.352 492.953,-25.2805 492.953,-25.2805 492.953,-25.2805 497.867,-24.352 492.118,-20.8587 502.78,-23.4236 502.78,-23.4236\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge51&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"413.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2 -->\n",
"<g id=\"node3\" class=\"node\"><title>node2</title>\n",
"<g id=\"a_node3\"><a xlink:href=\"http://dbpedia.org/resource/Strand,_London\" xlink:title=\" London\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3190\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\"> London</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node3 -->\n",
"<g id=\"node4\" class=\"node\"><title>node3</title>\n",
"<g id=\"a_node4\"><a xlink:href=\"http://dbpedia.org/resource/United_Kingdom\" xlink:title=\"United\\nKingdom\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3263\" y=\"-21\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">United</text>\n",
"<text text-anchor=\"middle\" x=\"3263\" y=\"-10\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Kingdom</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node2&#45;&gt;node3 -->\n",
"<g id=\"edge2\" class=\"edge\"><title>node2&#45;&gt;node3</title>\n",
"<g id=\"a_edge2\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3197.9,-81.6776C3202.43,-72.8279 3208.68,-62.2224 3216,-54 3219.64,-49.9153 3223.82,-46.003 3228.15,-42.3707\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3236.04,-36.1582 3230.97,-45.8799 3232.12,-39.2512 3228.19,-42.3442 3228.19,-42.3442 3228.19,-42.3442 3232.12,-39.2512 3225.4,-38.8084 3236.04,-36.1582 3236.04,-36.1582\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge2&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3237.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node4 -->\n",
"<g id=\"node5\" class=\"node\"><title>node4</title>\n",
"<g id=\"a_node5\"><a xlink:href=\"http://dbpedia.org/resource/Musée_Rodin\" xlink:title=\"Musée\\nRodin\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3488\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Musée</text>\n",
"<text text-anchor=\"middle\" x=\"3488\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Rodin</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node5 -->\n",
"<g id=\"node6\" class=\"node\"><title>node5</title>\n",
"<g id=\"a_node6\"><a xlink:href=\"http://dbpedia.org/resource/Paris\" xlink:title=\"Paris\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3488\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Paris</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node4&#45;&gt;node5 -->\n",
"<g id=\"edge3\" class=\"edge\"><title>node4&#45;&gt;node5</title>\n",
"<g id=\"a_edge3\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3488,-163.641C3488,-153.297 3488,-139.941 3488,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3488,-118.05 3492.5,-128.05 3488,-123.05 3488,-128.05 3488,-128.05 3488,-128.05 3488,-123.05 3483.5,-128.05 3488,-118.05 3488,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge3&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3510\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node39 -->\n",
"<g id=\"node40\" class=\"node\"><title>node39</title>\n",
"<g id=\"a_node40\"><a xlink:href=\"http://dbpedia.org/resource/France\" xlink:title=\"France\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3488\" y=\"-15.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">France</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node5&#45;&gt;node39 -->\n",
"<g id=\"edge27\" class=\"edge\"><title>node5&#45;&gt;node39</title>\n",
"<g id=\"a_edge27\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3488,-81.6412C3488,-71.2971 3488,-57.941 3488,-46.2206\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3488,-36.0501 3492.5,-46.0501 3488,-41.0501 3488,-46.0501 3488,-46.0501 3488,-46.0501 3488,-41.0501 3483.5,-46.0501 3488,-36.0501 3488,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge27&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3509.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node6 -->\n",
"<g id=\"node7\" class=\"node\"><title>node6</title>\n",
"<g id=\"a_node7\"><a xlink:href=\"http://dbpedia.org/resource/Boats_du_Rhône\" xlink:title=\"Boats\\ndu Rhône\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3012\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Boats</text>\n",
"<text text-anchor=\"middle\" x=\"3012\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">du Rhône</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node7 -->\n",
"<g id=\"node8\" class=\"node\"><title>node7</title>\n",
"<g id=\"a_node8\"><a xlink:href=\"http://dbpedia.org/resource/Museum_Folkwang\" xlink:title=\"Museum\\nFolkwang\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3011\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum</text>\n",
"<text text-anchor=\"middle\" x=\"3011\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Folkwang</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node6&#45;&gt;node7 -->\n",
"<g id=\"edge4\" class=\"edge\"><title>node6&#45;&gt;node7</title>\n",
"<g id=\"a_edge4\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3011.78,-245.641C3011.65,-235.297 3011.49,-221.941 3011.34,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3011.21,-200.05 3015.84,-209.993 3011.28,-205.05 3011.34,-210.049 3011.34,-210.049 3011.34,-210.049 3011.28,-205.05 3006.84,-210.106 3011.21,-200.05 3011.21,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge4&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3035\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node14 -->\n",
"<g id=\"node15\" class=\"node\"><title>node14</title>\n",
"<g id=\"a_node15\"><a xlink:href=\"http://dbpedia.org/resource/Thyssen-Bornemisza_Museum\" xlink:title=\"Thyssen&#45;Bornemisza\\nMuseum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3117\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Thyssen&#45;Bornemisza</text>\n",
"<text text-anchor=\"middle\" x=\"3117\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node6&#45;&gt;node14 -->\n",
"<g id=\"edge56\" class=\"edge\"><title>node6&#45;&gt;node14</title>\n",
"<g id=\"a_edge56\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3037.19,-245.916C3045.21,-240.33 3054.06,-234.014 3062,-228 3070.94,-221.226 3080.47,-213.586 3089.04,-206.551\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3096.92,-200.038 3092.08,-209.88 3093.06,-203.225 3089.21,-206.412 3089.21,-206.412 3089.21,-206.412 3093.06,-203.225 3086.34,-202.945 3096.92,-200.038 3096.92,-200.038\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge56&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3098\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20 -->\n",
"<g id=\"node21\" class=\"node\"><title>node20</title>\n",
"<g id=\"a_node21\"><a xlink:href=\"http://dbpedia.org/resource/Smithsonian_Institution\" xlink:title=\"Smithsonian\\nInstitution\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2077\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Smithsonian</text>\n",
"<text text-anchor=\"middle\" x=\"2077\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Institution</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node6&#45;&gt;node20 -->\n",
"<g id=\"edge94\" class=\"edge\"><title>node6&#45;&gt;node20</title>\n",
"<g id=\"a_edge94\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2981.38,-249.389C2977.92,-248.125 2974.41,-246.961 2971,-246 2951.73,-240.572 2812.92,-220.029 2793,-218 2623.47,-200.734 2580.21,-208.344 2410,-200 2308.95,-195.046 2190.67,-188.933 2125.78,-185.552\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2115.45,-185.014 2125.68,-181.041 2120.45,-185.274 2125.44,-185.535 2125.44,-185.535 2125.44,-185.535 2120.45,-185.274 2125.21,-190.028 2115.45,-185.014 2115.45,-185.014\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge94&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2887\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node36 -->\n",
"<g id=\"node37\" class=\"node\"><title>node36</title>\n",
"<g id=\"a_node37\"><a xlink:href=\"http://dbpedia.org/resource/Essen\" xlink:title=\"Essen\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2997\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Essen</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node7&#45;&gt;node36 -->\n",
"<g id=\"edge24\" class=\"edge\"><title>node7&#45;&gt;node36</title>\n",
"<g id=\"a_edge24\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3007.96,-163.641C3006.15,-153.297 3003.81,-139.941 3001.76,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2999.98,-118.05 3006.14,-127.125 3000.85,-122.975 3001.71,-127.9 3001.71,-127.9 3001.71,-127.9 3000.85,-122.975 2997.28,-128.676 2999.98,-118.05 2999.98,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge24&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3027\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node8 -->\n",
"<g id=\"node9\" class=\"node\"><title>node8</title>\n",
"<g id=\"a_node9\"><a xlink:href=\"http://dbpedia.org/resource/Cologne\" xlink:title=\"Cologne\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2923\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Cologne</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node9 -->\n",
"<g id=\"node10\" class=\"node\"><title>node9</title>\n",
"<g id=\"a_node10\"><a xlink:href=\"http://dbpedia.org/resource/Germany\" xlink:title=\"Germany\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2959\" y=\"-15.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Germany</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node8&#45;&gt;node9 -->\n",
"<g id=\"edge5\" class=\"edge\"><title>node8&#45;&gt;node9</title>\n",
"<g id=\"a_edge5\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2922.49,-81.693C2922.84,-73.048 2924.17,-62.6215 2928,-54 2929.54,-50.5316 2931.55,-47.1628 2933.81,-43.9728\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2940.22,-36.001 2937.46,-46.615 2937.08,-39.8987 2933.95,-43.7963 2933.95,-43.7963 2933.95,-43.7963 2937.08,-39.8987 2930.44,-40.9777 2940.22,-36.001 2940.22,-36.001\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge5&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2949.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node10 -->\n",
"<g id=\"node11\" class=\"node\"><title>node10</title>\n",
"<g id=\"a_node11\"><a xlink:href=\"http://dbpedia.org/resource/Chicago\" xlink:title=\"Chicago\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"572\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Chicago</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node10&#45;&gt;node11 -->\n",
"<g id=\"edge6\" class=\"edge\"><title>node10&#45;&gt;node11</title>\n",
"<g id=\"a_edge6\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M562.887,-81.6412C557.29,-70.9805 550.013,-57.1205 543.728,-45.149\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"538.951,-36.0501 547.584,-42.8123 541.275,-40.4771 543.6,-44.9041 543.6,-44.9041 543.6,-44.9041 541.275,-40.4771 539.615,-46.9959 538.951,-36.0501 538.951,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge6&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"575.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node12 -->\n",
"<g id=\"node13\" class=\"node\"><title>node12</title>\n",
"<g id=\"a_node13\"><a xlink:href=\"http://dbpedia.org/resource/Self-Portrait_with_Bandaged_Ear\" xlink:title=\"Self&#45;Portrait with\\nBandaged Ear\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3228\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Self&#45;Portrait with</text>\n",
"<text text-anchor=\"middle\" x=\"3228\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Bandaged Ear</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node13 -->\n",
"<g id=\"node14\" class=\"node\"><title>node13</title>\n",
"<g id=\"a_node14\"><a xlink:href=\"http://dbpedia.org/resource/Courtauld_Gallery\" xlink:title=\"Courtauld\\nGallery\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3228\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Courtauld</text>\n",
"<text text-anchor=\"middle\" x=\"3228\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Gallery</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node12&#45;&gt;node13 -->\n",
"<g id=\"edge7\" class=\"edge\"><title>node12&#45;&gt;node13</title>\n",
"<g id=\"a_edge7\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3228,-245.641C3228,-235.297 3228,-221.941 3228,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3228,-200.05 3232.5,-210.05 3228,-205.05 3228,-210.05 3228,-210.05 3228,-210.05 3228,-205.05 3223.5,-210.05 3228,-200.05 3228,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge7&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3251\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node13&#45;&gt;node2 -->\n",
"<g id=\"edge20\" class=\"edge\"><title>node13&#45;&gt;node2</title>\n",
"<g id=\"a_edge20\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3208.37,-163.684C3203.59,-158.472 3198.99,-152.416 3196,-146 3193.5,-140.643 3191.95,-134.563 3191.01,-128.643\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3189.89,-118.35 3195.44,-127.808 3190.43,-123.321 3190.97,-128.292 3190.97,-128.292 3190.97,-128.292 3190.43,-123.321 3186.5,-128.776 3189.89,-118.35 3189.89,-118.35\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge20&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3218\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node76 -->\n",
"<g id=\"node77\" class=\"node\"><title>node76</title>\n",
"<g id=\"a_node77\"><a xlink:href=\"http://dbpedia.org/resource/London\" xlink:title=\"London\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3263\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">London</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node13&#45;&gt;node76 -->\n",
"<g id=\"edge75\" class=\"edge\"><title>node13&#45;&gt;node76</title>\n",
"<g id=\"a_edge75\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3235.59,-163.641C3240.21,-153.086 3246.2,-139.395 3251.4,-127.505\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3255.54,-118.05 3255.66,-129.015 3253.54,-122.631 3251.53,-127.212 3251.53,-127.212 3251.53,-127.212 3253.54,-122.631 3247.41,-125.408 3255.54,-118.05 3255.54,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge75&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3270\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node15 -->\n",
"<g id=\"node16\" class=\"node\"><title>node15</title>\n",
"<g id=\"a_node16\"><a xlink:href=\"http://dbpedia.org/resource/Madrid\" xlink:title=\"Madrid\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3117\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Madrid</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node14&#45;&gt;node15 -->\n",
"<g id=\"edge8\" class=\"edge\"><title>node14&#45;&gt;node15</title>\n",
"<g id=\"a_edge8\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3117,-163.641C3117,-153.297 3117,-139.941 3117,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3117,-118.05 3121.5,-128.05 3117,-123.05 3117,-128.05 3117,-128.05 3117,-128.05 3117,-123.05 3112.5,-128.05 3117,-118.05 3117,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge8&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3139\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node48 -->\n",
"<g id=\"node49\" class=\"node\"><title>node48</title>\n",
"<g id=\"a_node49\"><a xlink:href=\"http://dbpedia.org/resource/Spain\" xlink:title=\"Spain\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3117\" y=\"-15.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Spain</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node15&#45;&gt;node48 -->\n",
"<g id=\"edge32\" class=\"edge\"><title>node15&#45;&gt;node48</title>\n",
"<g id=\"a_edge32\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3117,-81.6412C3117,-71.2971 3117,-57.941 3117,-46.2206\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3117,-36.0501 3121.5,-46.0501 3117,-41.0501 3117,-46.0501 3117,-46.0501 3117,-46.0501 3117,-41.0501 3112.5,-46.0501 3117,-36.0501 3117,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge32&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3138.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node16 -->\n",
"<g id=\"node17\" class=\"node\"><title>node16</title>\n",
"<g id=\"a_node17\"><a xlink:href=\"http://dbpedia.org/resource/Adrianus_Jacobus_Zuyderland\" xlink:title=\"Adrianus\\nJacobus Zuyderland\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"214\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Adrianus</text>\n",
"<text text-anchor=\"middle\" x=\"214\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Jacobus Zuyderland</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node16&#45;&gt;node0 -->\n",
"<g id=\"edge9\" class=\"edge\"><title>node16&#45;&gt;node0</title>\n",
"<g id=\"a_edge9\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M214,-245.641C214,-235.297 214,-221.941 214,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"214,-200.05 218.5,-210.05 214,-205.05 214,-210.05 214,-210.05 214,-210.05 214,-205.05 209.5,-210.05 214,-200.05 214,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge9&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"237\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node17 -->\n",
"<g id=\"node18\" class=\"node\"><title>node17</title>\n",
"<g id=\"a_node18\"><a xlink:href=\"http://dbpedia.org/resource/Tsentralny_District,_Saint_Petersburg\" xlink:title=\" Saint\\nPetersburg\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3672\" y=\"-103\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\"> Saint</text>\n",
"<text text-anchor=\"middle\" x=\"3672\" y=\"-92\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Petersburg</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node18 -->\n",
"<g id=\"node19\" class=\"node\"><title>node18</title>\n",
"<g id=\"a_node19\"><a xlink:href=\"http://dbpedia.org/resource/Russia\" xlink:title=\"Russia\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3711\" y=\"-15.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Russia</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node17&#45;&gt;node18 -->\n",
"<g id=\"edge10\" class=\"edge\"><title>node17&#45;&gt;node18</title>\n",
"<g id=\"a_edge10\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3674.92,-81.7587C3676.8,-73.1304 3679.7,-62.699 3684,-54 3685.58,-50.807 3687.47,-47.6215 3689.51,-44.5457\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3695.52,-36.2527 3693.3,-46.9904 3692.59,-40.301 3689.65,-44.3492 3689.65,-44.3492 3689.65,-44.3492 3692.59,-40.301 3686.01,-41.708 3695.52,-36.2527 3695.52,-36.2527\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge10&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3705.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node19 -->\n",
"<g id=\"node20\" class=\"node\"><title>node19</title>\n",
"<g id=\"a_node20\"><a xlink:href=\"http://dbpedia.org/resource/Washington,_D.C.\" xlink:title=\" D.C.\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2004\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\"> D.C.</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node19&#45;&gt;node11 -->\n",
"<g id=\"edge11\" class=\"edge\"><title>node19&#45;&gt;node11</title>\n",
"<g id=\"a_edge11\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1995.53,-81.6946C1989.61,-71.6625 1980.67,-59.8822 1969,-54 1904.61,-21.5331 786.255,-19.1599 567.088,-19.007\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"557.052,-19.0011 567.055,-14.507 562.052,-19.0041 567.052,-19.007 567.052,-19.007 567.052,-19.007 562.052,-19.0041 567.05,-23.507 557.052,-19.0011 557.052,-19.0011\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge11&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2003.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20&#45;&gt;node19 -->\n",
"<g id=\"edge88\" class=\"edge\"><title>node20&#45;&gt;node19</title>\n",
"<g id=\"a_edge88\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2049.38,-163.987C2042.22,-158.775 2034.87,-152.645 2029,-146 2024.15,-140.512 2019.84,-133.924 2016.23,-127.505\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2011.44,-118.366 2020.07,-125.139 2013.76,-122.796 2016.08,-127.226 2016.08,-127.226 2016.08,-127.226 2013.76,-122.796 2012.09,-129.313 2011.44,-118.366 2011.44,-118.366\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge88&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2051\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node21 -->\n",
"<g id=\"node22\" class=\"node\"><title>node21</title>\n",
"<g id=\"a_node22\"><a xlink:href=\"http://dbpedia.org/resource/New_York_City\" xlink:title=\"New\\nYork City\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"718\" y=\"-103\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">New</text>\n",
"<text text-anchor=\"middle\" x=\"718\" y=\"-92\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">York City</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20&#45;&gt;node21 -->\n",
"<g id=\"edge12\" class=\"edge\"><title>node20&#45;&gt;node21</title>\n",
"<g id=\"a_edge12\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2038.51,-166.197C2035.33,-165.331 2032.13,-164.579 2029,-164 1874.68,-135.45 1479.74,-153.823 1323,-146 1108.05,-135.272 850.784,-113 755.707,-104.447\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"745.709,-103.545 756.074,-99.9622 750.689,-103.994 755.669,-104.444 755.669,-104.444 755.669,-104.444 750.689,-103.994 755.264,-108.926 745.709,-103.545 745.709,-103.545\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge12&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1345\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node51 -->\n",
"<g id=\"node52\" class=\"node\"><title>node51</title>\n",
"<g id=\"a_node52\"><a xlink:href=\"http://dbpedia.org/resource/Chantilly,_Virginia\" xlink:title=\" Virginia\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2077\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\"> Virginia</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node20&#45;&gt;node51 -->\n",
"<g id=\"edge42\" class=\"edge\"><title>node20&#45;&gt;node51</title>\n",
"<g id=\"a_edge42\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2077,-163.641C2077,-153.297 2077,-139.941 2077,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2077,-118.05 2081.5,-128.05 2077,-123.05 2077,-128.05 2077,-128.05 2077,-128.05 2077,-123.05 2072.5,-128.05 2077,-118.05 2077,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge42&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2099\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node21&#45;&gt;node11 -->\n",
"<g id=\"edge64\" class=\"edge\"><title>node21&#45;&gt;node11</title>\n",
"<g id=\"a_edge64\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M699.955,-81.9473C689.107,-72.513 674.607,-61.263 660,-54 630.438,-39.3012 593.921,-30.1675 567.124,-24.9325\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"557.006,-23.05 567.66,-20.4551 561.922,-23.9646 566.837,-24.8792 566.837,-24.8792 566.837,-24.8792 561.922,-23.9646 566.014,-29.3033 557.006,-23.05 557.006,-23.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge64&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"697.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node22 -->\n",
"<g id=\"node23\" class=\"node\"><title>node22</title>\n",
"<g id=\"a_node23\"><a xlink:href=\"http://dbpedia.org/resource/Drawbridge_in_Nieuw-Amsterdam\" xlink:title=\"Drawbridge in\\nNieuw&#45;Amsterdam\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2793\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Drawbridge in</text>\n",
"<text text-anchor=\"middle\" x=\"2793\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Nieuw&#45;Amsterdam</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node23 -->\n",
"<g id=\"node24\" class=\"node\"><title>node23</title>\n",
"<g id=\"a_node24\"><a xlink:href=\"http://dbpedia.org/resource/Groninger_Museum\" xlink:title=\"Groninger\\nMuseum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2451\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Groninger</text>\n",
"<text text-anchor=\"middle\" x=\"2451\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node22&#45;&gt;node23 -->\n",
"<g id=\"edge13\" class=\"edge\"><title>node22&#45;&gt;node23</title>\n",
"<g id=\"a_edge13\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2771.27,-245.946C2757.61,-236.139 2739.18,-224.508 2721,-218 2644.03,-190.446 2547.81,-184.148 2493.49,-182.961\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2483.21,-182.787 2493.28,-178.457 2488.21,-182.872 2493.2,-182.957 2493.2,-182.957 2493.2,-182.957 2488.21,-182.872 2493.13,-187.456 2483.21,-182.787 2483.21,-182.787\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge13&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2766\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node72 -->\n",
"<g id=\"node73\" class=\"node\"><title>node72</title>\n",
"<g id=\"a_node73\"><a xlink:href=\"http://dbpedia.org/resource/Groningen\" xlink:title=\"Groningen\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2227\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Groningen</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node23&#45;&gt;node72 -->\n",
"<g id=\"edge59\" class=\"edge\"><title>node23&#45;&gt;node72</title>\n",
"<g id=\"a_edge59\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2418.91,-169.538C2379.66,-155.52 2313.08,-131.744 2269.58,-116.208\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2260.13,-112.832 2271.06,-111.957 2264.84,-114.514 2269.55,-116.195 2269.55,-116.195 2269.55,-116.195 2264.84,-114.514 2268.03,-120.433 2260.13,-112.832 2260.13,-112.832\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge59&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2375\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node24 -->\n",
"<g id=\"node25\" class=\"node\"><title>node24</title>\n",
"<g id=\"a_node25\"><a xlink:href=\"http://dbpedia.org/resource/Le_Moulin_de_la_Galette_(Van_Gogh_series)\" xlink:title=\"Le Moulin de la\\nGalette (Van Gogh series)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"70\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Le Moulin de la</text>\n",
"<text text-anchor=\"middle\" x=\"70\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Galette (Van Gogh series)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node25 -->\n",
"<g id=\"node26\" class=\"node\"><title>node25</title>\n",
"<g id=\"a_node26\"><a xlink:href=\"http://dbpedia.org/resource/Carnegie_Museum_of_Art\" xlink:title=\"Carnegie Museum\\nof Art\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"87\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Carnegie Museum</text>\n",
"<text text-anchor=\"middle\" x=\"87\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">of Art</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node24&#45;&gt;node25 -->\n",
"<g id=\"edge14\" class=\"edge\"><title>node24&#45;&gt;node25</title>\n",
"<g id=\"a_edge14\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M73.6887,-245.641C75.9093,-235.192 78.783,-221.668 81.2918,-209.862\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"83.3769,-200.05 85.6999,-210.767 82.3375,-204.941 81.2982,-209.832 81.2982,-209.832 81.2982,-209.832 82.3375,-204.941 76.8965,-208.896 83.3769,-200.05 83.3769,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge14&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"103\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node64 -->\n",
"<g id=\"node65\" class=\"node\"><title>node64</title>\n",
"<g id=\"a_node65\"><a xlink:href=\"http://dbpedia.org/resource/Pittsburgh\" xlink:title=\"Pittsburgh\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"106\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Pittsburgh</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node25&#45;&gt;node64 -->\n",
"<g id=\"edge47\" class=\"edge\"><title>node25&#45;&gt;node64</title>\n",
"<g id=\"a_edge47\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M91.1227,-163.641C93.6045,-153.192 96.8163,-139.668 99.6202,-127.862\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"101.951,-118.05 104.018,-128.819 100.795,-122.915 99.6398,-127.779 99.6398,-127.779 99.6398,-127.779 100.795,-122.915 95.2616,-126.74 101.951,-118.05 101.951,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge47&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"120\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node26 -->\n",
"<g id=\"node27\" class=\"node\"><title>node26</title>\n",
"<g id=\"a_node27\"><a xlink:href=\"http://dbpedia.org/resource/Japonaiserie_(Van_Gogh)\" xlink:title=\"Japonaiserie\\n(Van Gogh)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2329\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Japonaiserie</text>\n",
"<text text-anchor=\"middle\" x=\"2329\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">(Van Gogh)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node27 -->\n",
"<g id=\"node28\" class=\"node\"><title>node27</title>\n",
"<g id=\"a_node28\"><a xlink:href=\"http://dbpedia.org/resource/Van_Gogh_Museum\" xlink:title=\"Van\\nGogh Museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1977\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Van</text>\n",
"<text text-anchor=\"middle\" x=\"1977\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Gogh Museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node26&#45;&gt;node27 -->\n",
"<g id=\"edge15\" class=\"edge\"><title>node26&#45;&gt;node27</title>\n",
"<g id=\"a_edge15\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2291.89,-246.375C2268.32,-236.535 2236.93,-224.716 2208,-218 2133.16,-200.623 2109.1,-215.275 2030.13,-199.927\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2020.22,-197.903 2030.92,-195.496 2025.12,-198.904 2030.02,-199.904 2030.02,-199.904 2030.02,-199.904 2025.12,-198.904 2029.12,-204.313 2020.22,-197.903 2020.22,-197.903\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge15&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2266\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node50 -->\n",
"<g id=\"node51\" class=\"node\"><title>node50</title>\n",
"<g id=\"a_node51\"><a xlink:href=\"http://dbpedia.org/resource/Amsterdam\" xlink:title=\"Amsterdam\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1922\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Amsterdam</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node27&#45;&gt;node50 -->\n",
"<g id=\"edge35\" class=\"edge\"><title>node27&#45;&gt;node50</title>\n",
"<g id=\"a_edge35\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1956.43,-163.746C1950.93,-158.448 1945.33,-152.333 1941,-146 1937.17,-140.394 1933.88,-133.894 1931.16,-127.606\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1927.37,-118.06 1935.24,-125.694 1929.21,-122.707 1931.06,-127.354 1931.06,-127.354 1931.06,-127.354 1929.21,-122.707 1926.88,-129.015 1927.37,-118.06 1927.37,-118.06\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge35&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1963\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node28 -->\n",
"<g id=\"node29\" class=\"node\"><title>node28</title>\n",
"<g id=\"a_node29\"><a xlink:href=\"http://dbpedia.org/resource/Landscape_with_Snow\" xlink:title=\"Landscape\\nwith Snow\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"414\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Landscape</text>\n",
"<text text-anchor=\"middle\" x=\"414\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">with Snow</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node29 -->\n",
"<g id=\"node30\" class=\"node\"><title>node29</title>\n",
"<g id=\"a_node30\"><a xlink:href=\"http://dbpedia.org/resource/Solomon_R._Guggenheim_Museum\" xlink:title=\"Solomon R. Guggenheim\\nMuseum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"496\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Solomon R. Guggenheim</text>\n",
"<text text-anchor=\"middle\" x=\"496\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node28&#45;&gt;node29 -->\n",
"<g id=\"edge16\" class=\"edge\"><title>node28&#45;&gt;node29</title>\n",
"<g id=\"a_edge16\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M431.793,-245.641C443.369,-234.347 458.626,-219.462 471.363,-207.036\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"478.524,-200.05 474.508,-210.254 474.945,-203.542 471.366,-207.033 471.366,-207.033 471.366,-207.033 474.945,-203.542 468.223,-203.812 478.524,-200.05 478.524,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge16&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"483\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node29&#45;&gt;node21 -->\n",
"<g id=\"edge17\" class=\"edge\"><title>node29&#45;&gt;node21</title>\n",
"<g id=\"a_edge17\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M513.33,-163.955C524.35,-154.152 539.435,-142.521 555,-136 607.175,-114.141 626.734,-133.975 681,-118 681.097,-117.971 681.195,-117.942 681.293,-117.913\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"690.452,-114.697 682.508,-122.256 685.734,-116.353 681.017,-118.01 681.017,-118.01 681.017,-118.01 685.734,-116.353 679.526,-113.764 690.452,-114.697 690.452,-114.697\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge17&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"577\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node80 -->\n",
"<g id=\"node81\" class=\"node\"><title>node80</title>\n",
"<g id=\"a_node81\"><a xlink:href=\"http://dbpedia.org/resource/Manhattan\" xlink:title=\"Manhattan\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"492\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Manhattan</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node29&#45;&gt;node80 -->\n",
"<g id=\"edge70\" class=\"edge\"><title>node29&#45;&gt;node80</title>\n",
"<g id=\"a_edge70\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M493.657,-163.944C492.98,-158.249 492.334,-151.862 492,-146 491.672,-140.248 491.533,-134.075 491.502,-128.201\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"491.543,-118.108 496.002,-128.126 491.523,-123.108 491.502,-128.108 491.502,-128.108 491.502,-128.108 491.523,-123.108 487.002,-128.089 491.543,-118.108 491.543,-118.108\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge70&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"514\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node30 -->\n",
"<g id=\"node31\" class=\"node\"><title>node30</title>\n",
"<g id=\"a_node31\"><a xlink:href=\"http://dbpedia.org/resource/Portrait_of_Père_Tanguy\" xlink:title=\"Portrait\\nof Père Tanguy\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3460\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Portrait</text>\n",
"<text text-anchor=\"middle\" x=\"3460\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">of Père Tanguy</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node30&#45;&gt;node4 -->\n",
"<g id=\"edge18\" class=\"edge\"><title>node30&#45;&gt;node4</title>\n",
"<g id=\"a_edge18\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3466.08,-245.641C3469.77,-235.086 3474.56,-221.395 3478.72,-209.505\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3482.03,-200.05 3482.98,-210.975 3480.38,-204.769 3478.73,-209.489 3478.73,-209.489 3478.73,-209.489 3480.38,-204.769 3474.48,-208.002 3482.03,-200.05 3482.03,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge18&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3499\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node31 -->\n",
"<g id=\"node32\" class=\"node\"><title>node31</title>\n",
"<g id=\"a_node32\"><a xlink:href=\"http://dbpedia.org/resource/Falling_Autumn_Leaves\" xlink:title=\"Falling Autumn\\nLeaves\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1210\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Falling Autumn</text>\n",
"<text text-anchor=\"middle\" x=\"1210\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Leaves</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node32 -->\n",
"<g id=\"node33\" class=\"node\"><title>node32</title>\n",
"<g id=\"a_node33\"><a xlink:href=\"http://dbpedia.org/resource/Kröller-Müller_Museum\" xlink:title=\"Kröller&#45;Müller\\nMuseum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1102\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Kröller&#45;Müller</text>\n",
"<text text-anchor=\"middle\" x=\"1102\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node31&#45;&gt;node32 -->\n",
"<g id=\"edge19\" class=\"edge\"><title>node31&#45;&gt;node32</title>\n",
"<g id=\"a_edge19\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1188.43,-245.863C1177.6,-237.356 1164.21,-227 1152,-218 1146.68,-214.08 1140.99,-209.994 1135.42,-206.054\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1126.84,-200.03 1137.61,-202.093 1130.93,-202.903 1135.02,-205.776 1135.02,-205.776 1135.02,-205.776 1130.93,-202.903 1132.44,-209.459 1126.84,-200.03 1126.84,-200.03\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge19&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1188\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node84 -->\n",
"<g id=\"node85\" class=\"node\"><title>node84</title>\n",
"<g id=\"a_node85\"><a xlink:href=\"http://dbpedia.org/resource/Otterlo\" xlink:title=\"Otterlo\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1713\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Otterlo</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node32&#45;&gt;node84 -->\n",
"<g id=\"edge85\" class=\"edge\"><title>node32&#45;&gt;node84</title>\n",
"<g id=\"a_edge85\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1141.15,-175.874C1252.03,-161.356 1567.18,-120.093 1675.72,-105.881\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1685.86,-104.553 1676.53,-110.313 1680.91,-105.202 1675.95,-105.851 1675.95,-105.851 1675.95,-105.851 1680.91,-105.202 1675.36,-101.39 1685.86,-104.553 1685.86,-104.553\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge85&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1467\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node33 -->\n",
"<g id=\"node34\" class=\"node\"><title>node33</title>\n",
"<g id=\"a_node34\"><a xlink:href=\"http://dbpedia.org/resource/Skull_of_a_Skeleton_with_Burning_Cigarette\" xlink:title=\"Skull of a Skeleton with\\nBurning Cigarette\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2448\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Skull of a Skeleton with</text>\n",
"<text text-anchor=\"middle\" x=\"2448\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Burning Cigarette</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node33&#45;&gt;node27 -->\n",
"<g id=\"edge21\" class=\"edge\"><title>node33&#45;&gt;node27</title>\n",
"<g id=\"a_edge21\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2399.42,-245.983C2369.19,-236.125 2329.28,-224.427 2293,-218 2180.36,-198.048 2146.3,-221.114 2030.19,-199.906\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2020.2,-198.01 2030.86,-195.453 2025.11,-198.942 2030.02,-199.874 2030.02,-199.874 2030.02,-199.874 2025.11,-198.942 2029.19,-204.296 2020.2,-198.01 2020.2,-198.01\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge21&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2360\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node34 -->\n",
"<g id=\"node35\" class=\"node\"><title>node34</title>\n",
"<g id=\"a_node35\"><a xlink:href=\"http://dbpedia.org/resource/New_York\" xlink:title=\"New York\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"410\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">New York</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node34&#45;&gt;node11 -->\n",
"<g id=\"edge22\" class=\"edge\"><title>node34&#45;&gt;node11</title>\n",
"<g id=\"a_edge22\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M422.225,-81.9613C429.488,-72.7632 439.345,-61.741 450,-54 463.055,-44.5161 479.083,-36.8681 493.356,-31.1689\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"502.898,-27.536 495.154,-35.2996 498.225,-29.315 493.552,-31.094 493.552,-31.094 493.552,-31.094 498.225,-29.315 491.951,-26.8885 502.898,-27.536 502.898,-27.536\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge22&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"471.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node35 -->\n",
"<g id=\"node36\" class=\"node\"><title>node35</title>\n",
"<g id=\"a_node36\"><a xlink:href=\"http://dbpedia.org/resource/Bedroom_in_Arles\" xlink:title=\"Bedroom in\\nArles\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2566\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Bedroom in</text>\n",
"<text text-anchor=\"middle\" x=\"2566\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Arles</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node35&#45;&gt;node27 -->\n",
"<g id=\"edge23\" class=\"edge\"><title>node35&#45;&gt;node27</title>\n",
"<g id=\"a_edge23\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2529.75,-249.047C2526.48,-247.954 2523.19,-246.92 2520,-246 2461.96,-229.263 2446.91,-225.763 2387,-218 2232.25,-197.947 2187.48,-227.739 2030.22,-199.896\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2020.19,-198.07 2030.83,-195.434 2025.11,-198.966 2030.03,-199.861 2030.03,-199.861 2030.03,-199.861 2025.11,-198.966 2029.22,-204.289 2020.19,-198.07 2020.19,-198.07\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge23&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2473\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node36&#45;&gt;node9 -->\n",
"<g id=\"edge71\" class=\"edge\"><title>node36&#45;&gt;node9</title>\n",
"<g id=\"a_edge71\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2988.75,-81.6412C2983.69,-70.9805 2977.11,-57.1205 2971.42,-45.149\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2967.1,-36.0501 2975.45,-43.1521 2969.24,-40.5665 2971.39,-45.0829 2971.39,-45.0829 2971.39,-45.0829 2969.24,-40.5665 2967.32,-47.0137 2967.1,-36.0501 2967.1,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge71&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3002.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node37&#45;&gt;node11 -->\n",
"<g id=\"edge25\" class=\"edge\"><title>node37&#45;&gt;node11</title>\n",
"<g id=\"a_edge25\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M247.621,-81.9331C270.12,-72.5534 299.247,-61.3623 326,-54 383.21,-38.2563 451.492,-28.2608 492.759,-23.1483\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"502.897,-21.9236 493.509,-27.5905 497.933,-22.5233 492.969,-23.123 492.969,-23.123 492.969,-23.123 497.933,-22.5233 492.43,-18.6555 502.897,-21.9236 502.897,-21.9236\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge25&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"347.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38 -->\n",
"<g id=\"node39\" class=\"node\"><title>node38</title>\n",
"<g id=\"a_node39\"><a xlink:href=\"http://dbpedia.org/resource/A_Lane_in_the_Public_Garden_at_Arles\" xlink:title=\"A Lane in the\\nPublic Garden at Arles\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1333\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">A Lane in the</text>\n",
"<text text-anchor=\"middle\" x=\"1333\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Public Garden at Arles</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node38&#45;&gt;node32 -->\n",
"<g id=\"edge26\" class=\"edge\"><title>node38&#45;&gt;node32</title>\n",
"<g id=\"a_edge26\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1290.36,-245.985C1268.04,-237.269 1240.18,-226.691 1215,-218 1194.16,-210.806 1170.92,-203.49 1150.97,-197.42\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1141.16,-194.457 1152.04,-193.042 1145.95,-195.903 1150.73,-197.35 1150.73,-197.35 1150.73,-197.35 1145.95,-195.903 1149.43,-201.657 1141.16,-194.457 1141.16,-194.457\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge26&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1265\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node40 -->\n",
"<g id=\"node41\" class=\"node\"><title>node40</title>\n",
"<g id=\"a_node41\"><a xlink:href=\"http://dbpedia.org/resource/Farmhouse_Among_Trees\" xlink:title=\"Farmhouse Among\\nTrees\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3866\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Farmhouse Among</text>\n",
"<text text-anchor=\"middle\" x=\"3866\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Trees</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node41 -->\n",
"<g id=\"node42\" class=\"node\"><title>node41</title>\n",
"<g id=\"a_node42\"><a xlink:href=\"http://dbpedia.org/resource/Museum_of_John_Paul_II_Collection\" xlink:title=\"Museum of John Paul\\nII Collection\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3866\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum of John Paul</text>\n",
"<text text-anchor=\"middle\" x=\"3866\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">II Collection</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node40&#45;&gt;node41 -->\n",
"<g id=\"edge28\" class=\"edge\"><title>node40&#45;&gt;node41</title>\n",
"<g id=\"a_edge28\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3866,-245.641C3866,-235.297 3866,-221.941 3866,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3866,-200.05 3870.5,-210.05 3866,-205.05 3866,-210.05 3866,-210.05 3866,-210.05 3866,-205.05 3861.5,-210.05 3866,-200.05 3866,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge28&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3889\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node83 -->\n",
"<g id=\"node84\" class=\"node\"><title>node83</title>\n",
"<g id=\"a_node84\"><a xlink:href=\"http://dbpedia.org/resource/Warsaw\" xlink:title=\"Warsaw\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3866\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Warsaw</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node41&#45;&gt;node83 -->\n",
"<g id=\"edge74\" class=\"edge\"><title>node41&#45;&gt;node83</title>\n",
"<g id=\"a_edge74\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3866,-163.641C3866,-153.297 3866,-139.941 3866,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3866,-118.05 3870.5,-128.05 3866,-123.05 3866,-128.05 3866,-128.05 3866,-128.05 3866,-123.05 3861.5,-128.05 3866,-118.05 3866,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge74&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3888\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node42 -->\n",
"<g id=\"node43\" class=\"node\"><title>node42</title>\n",
"<g id=\"a_node43\"><a xlink:href=\"http://dbpedia.org/resource/National_Gallery_in_Prague\" xlink:title=\"National\\nGallery in Prague\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3991\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">National</text>\n",
"<text text-anchor=\"middle\" x=\"3991\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Gallery in Prague</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43 -->\n",
"<g id=\"node44\" class=\"node\"><title>node43</title>\n",
"<g id=\"a_node44\"><a xlink:href=\"http://dbpedia.org/resource/Prague\" xlink:title=\"Prague\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3991\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Prague</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node42&#45;&gt;node43 -->\n",
"<g id=\"edge29\" class=\"edge\"><title>node42&#45;&gt;node43</title>\n",
"<g id=\"a_edge29\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3991,-163.641C3991,-153.297 3991,-139.941 3991,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3991,-118.05 3995.5,-128.05 3991,-123.05 3991,-128.05 3991,-128.05 3991,-128.05 3991,-123.05 3986.5,-128.05 3991,-118.05 3991,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge29&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4013\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node71 -->\n",
"<g id=\"node72\" class=\"node\"><title>node71</title>\n",
"<g id=\"a_node72\"><a xlink:href=\"http://dbpedia.org/resource/Czech_Republic\" xlink:title=\"Czech\\nRepublic\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3991\" y=\"-21\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Czech</text>\n",
"<text text-anchor=\"middle\" x=\"3991\" y=\"-10\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Republic</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node43&#45;&gt;node71 -->\n",
"<g id=\"edge58\" class=\"edge\"><title>node43&#45;&gt;node71</title>\n",
"<g id=\"a_edge58\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3991,-81.6412C3991,-71.2971 3991,-57.941 3991,-46.2206\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3991,-36.0501 3995.5,-46.0501 3991,-41.0501 3991,-46.0501 3991,-46.0501 3991,-46.0501 3991,-41.0501 3986.5,-46.0501 3991,-36.0501 3991,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge58&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4012.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node44 -->\n",
"<g id=\"node45\" class=\"node\"><title>node44</title>\n",
"<g id=\"a_node45\"><a xlink:href=\"http://dbpedia.org/resource/Divisionism\" xlink:title=\"Divisionism\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"736\" y=\"-261.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Divisionism</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node44&#45;&gt;node27 -->\n",
"<g id=\"edge90\" class=\"edge\"><title>node44&#45;&gt;node27</title>\n",
"<g id=\"a_edge90\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M771.724,-248.08C774.493,-247.268 777.272,-246.558 780,-246 891.535,-223.168 1178.41,-235.668 1292,-228 1336.56,-224.992 1347.48,-221.557 1392,-218 1587.62,-202.374 1820.54,-190.426 1923.52,-185.484\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1933.66,-185 1923.89,-189.972 1928.66,-185.239 1923.67,-185.477 1923.67,-185.477 1923.67,-185.477 1928.66,-185.239 1923.46,-180.982 1933.66,-185 1933.66,-185\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge90&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1415\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node44&#45;&gt;node32 -->\n",
"<g id=\"edge33\" class=\"edge\"><title>node44&#45;&gt;node32</title>\n",
"<g id=\"a_edge33\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M771.374,-245.856C792.561,-236.269 820.292,-224.897 846,-218 916.472,-199.094 1000.74,-190.084 1052.82,-186.026\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1062.8,-185.279 1053.16,-190.513 1057.81,-185.652 1052.82,-186.026 1052.82,-186.026 1052.82,-186.026 1057.81,-185.652 1052.49,-181.538 1062.8,-185.279 1062.8,-185.279\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge33&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"869\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node45 -->\n",
"<g id=\"node46\" class=\"node\"><title>node45</title>\n",
"<g id=\"a_node46\"><a xlink:href=\"http://dbpedia.org/resource/Museum_of_Modern_Art\" xlink:title=\"Museum of Modern\\nArt\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"355\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum of Modern</text>\n",
"<text text-anchor=\"middle\" x=\"355\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Art</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node44&#45;&gt;node45 -->\n",
"<g id=\"edge30\" class=\"edge\"><title>node44&#45;&gt;node45</title>\n",
"<g id=\"a_edge30\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M700.43,-248.462C697.276,-247.51 694.103,-246.667 691,-246 627.872,-232.439 460.004,-254.222 401,-228 390.893,-223.508 381.724,-215.761 374.278,-207.947\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"367.437,-200.23 377.438,-204.728 370.754,-203.972 374.071,-207.713 374.071,-207.713 374.071,-207.713 370.754,-203.972 370.703,-210.698 367.437,-200.23 367.437,-200.23\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge30&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"424\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node47 -->\n",
"<g id=\"node48\" class=\"node\"><title>node47</title>\n",
"<g id=\"a_node48\"><a xlink:href=\"http://dbpedia.org/resource/Art_Institute_of_Chicago\" xlink:title=\"Art\\nInstitute of Chicago\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"637\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Art</text>\n",
"<text text-anchor=\"middle\" x=\"637\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Institute of Chicago</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node44&#45;&gt;node47 -->\n",
"<g id=\"edge62\" class=\"edge\"><title>node44&#45;&gt;node47</title>\n",
"<g id=\"a_edge62\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M715.161,-245.837C704.901,-237.416 692.331,-227.141 681,-218 676.328,-214.231 671.361,-210.253 666.511,-206.383\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"658.532,-200.031 669.158,-202.739 662.443,-203.145 666.355,-206.259 666.355,-206.259 666.355,-206.259 662.443,-203.145 663.552,-209.78 658.532,-200.031 658.532,-200.031\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge62&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"717\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node45&#45;&gt;node34 -->\n",
"<g id=\"edge54\" class=\"edge\"><title>node45&#45;&gt;node34</title>\n",
"<g id=\"a_edge54\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M352.202,-163.741C351.62,-154.909 352.294,-144.299 357,-136 360.702,-129.471 366.181,-123.94 372.232,-119.338\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"380.723,-113.63 374.934,-122.944 376.574,-116.42 372.424,-119.209 372.424,-119.209 372.424,-119.209 376.574,-116.42 369.914,-115.474 380.723,-113.63 380.723,-113.63\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge54&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"379\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node45&#45;&gt;node80 -->\n",
"<g id=\"edge81\" class=\"edge\"><title>node45&#45;&gt;node80</title>\n",
"<g id=\"a_edge81\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M384.39,-163.838C404.706,-151.975 431.925,-136.08 453.904,-123.246\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"462.659,-118.134 456.292,-127.062 458.341,-120.655 454.023,-123.176 454.023,-123.176 454.023,-123.176 458.341,-120.655 451.754,-119.29 462.659,-118.134 462.659,-118.134\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge81&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"454\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node46 -->\n",
"<g id=\"node47\" class=\"node\"><title>node46</title>\n",
"<g id=\"a_node47\"><a xlink:href=\"http://dbpedia.org/resource/Asnières_(Van_Gogh_series)\" xlink:title=\"Asnières\\n(Van Gogh series)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"517\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Asnières</text>\n",
"<text text-anchor=\"middle\" x=\"517\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">(Van Gogh series)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node46&#45;&gt;node47 -->\n",
"<g id=\"edge31\" class=\"edge\"><title>node46&#45;&gt;node47</title>\n",
"<g id=\"a_edge31\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M542.743,-245.838C560.301,-234.133 583.745,-218.504 602.859,-205.761\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"611.3,-200.134 605.475,-209.425 607.139,-202.907 602.979,-205.681 602.979,-205.681 602.979,-205.681 607.139,-202.907 600.483,-201.936 611.3,-200.134 611.3,-200.134\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge31&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"608\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node47&#45;&gt;node10 -->\n",
"<g id=\"edge43\" class=\"edge\"><title>node47&#45;&gt;node10</title>\n",
"<g id=\"a_edge43\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M624.392,-163.663C618.114,-155.2 610.319,-144.941 603,-136 600.281,-132.679 597.363,-129.237 594.444,-125.865\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"587.724,-118.216 597.705,-122.758 591.024,-121.972 594.324,-125.728 594.324,-125.728 594.324,-125.728 591.024,-121.972 590.944,-128.698 587.724,-118.216 587.724,-118.216\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge43&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"633\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node66 -->\n",
"<g id=\"node67\" class=\"node\"><title>node66</title>\n",
"<g id=\"a_node67\"><a xlink:href=\"http://dbpedia.org/resource/Illinois\" xlink:title=\"Illinois\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"645\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Illinois</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node47&#45;&gt;node66 -->\n",
"<g id=\"edge49\" class=\"edge\"><title>node47&#45;&gt;node66</title>\n",
"<g id=\"a_edge49\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M658.167,-163.662C662.968,-158.529 667.411,-152.52 670,-146 672.571,-139.526 671.259,-132.823 668.19,-126.631\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"662.685,-118.01 671.86,-124.016 665.376,-122.224 668.067,-126.438 668.067,-126.438 668.067,-126.438 665.376,-122.224 664.275,-128.86 662.685,-118.01 662.685,-118.01\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge49&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"694\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node49 -->\n",
"<g id=\"node50\" class=\"node\"><title>node49</title>\n",
"<g id=\"a_node50\"><a xlink:href=\"http://dbpedia.org/resource/Seine_(Van_Gogh_series)\" xlink:title=\"Seine (Van Gogh\\nseries)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"634\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Seine (Van Gogh</text>\n",
"<text text-anchor=\"middle\" x=\"634\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">series)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node49&#45;&gt;node47 -->\n",
"<g id=\"edge34\" class=\"edge\"><title>node49&#45;&gt;node47</title>\n",
"<g id=\"a_edge34\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M634.24,-245.901C634.393,-237.494 634.634,-227.214 635,-218 635.101,-215.446 635.223,-212.788 635.356,-210.128\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"635.904,-200.084 639.853,-210.314 635.632,-205.077 635.359,-210.069 635.359,-210.069 635.359,-210.069 635.632,-205.077 630.866,-209.824 635.904,-200.084 635.904,-200.084\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge34&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"658\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node85 -->\n",
"<g id=\"node86\" class=\"node\"><title>node85</title>\n",
"<g id=\"a_node86\"><a xlink:href=\"http://dbpedia.org/resource/Netherlands\" xlink:title=\"Netherlands\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1922\" y=\"-15.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Netherlands</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node50&#45;&gt;node85 -->\n",
"<g id=\"edge86\" class=\"edge\"><title>node50&#45;&gt;node85</title>\n",
"<g id=\"a_edge86\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1922,-81.6412C1922,-71.2971 1922,-57.941 1922,-46.2206\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1922,-36.0501 1926.5,-46.0501 1922,-41.0501 1922,-46.0501 1922,-46.0501 1922,-46.0501 1922,-41.0501 1917.5,-46.0501 1922,-36.0501 1922,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge86&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1943.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node51&#45;&gt;node11 -->\n",
"<g id=\"edge36\" class=\"edge\"><title>node51&#45;&gt;node11</title>\n",
"<g id=\"a_edge36\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2063.95,-81.572C2055.28,-71.4938 2042.96,-59.7081 2029,-54 1959.36,-25.5184 792.737,-19.9342 567.478,-19.1198\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"557.177,-19.0835 567.193,-14.6189 562.177,-19.1012 567.177,-19.1188 567.177,-19.1188 567.177,-19.1188 562.177,-19.1012 567.161,-23.6188 557.177,-19.0835 557.177,-19.0835\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge36&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2066.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node52 -->\n",
"<g id=\"node53\" class=\"node\"><title>node52</title>\n",
"<g id=\"a_node53\"><a xlink:href=\"http://dbpedia.org/resource/Langlois_Bridge_at_Arles\" xlink:title=\"Langlois\\nBridge at Arles\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2919\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Langlois</text>\n",
"<text text-anchor=\"middle\" x=\"2919\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Bridge at Arles</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53 -->\n",
"<g id=\"node54\" class=\"node\"><title>node53</title>\n",
"<g id=\"a_node54\"><a xlink:href=\"http://dbpedia.org/resource/Wallraf-Richartz_Museum\" xlink:title=\"Wallraf&#45;Richartz\\nMuseum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2919\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Wallraf&#45;Richartz</text>\n",
"<text text-anchor=\"middle\" x=\"2919\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node52&#45;&gt;node53 -->\n",
"<g id=\"edge37\" class=\"edge\"><title>node52&#45;&gt;node53</title>\n",
"<g id=\"a_edge37\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2919,-245.641C2919,-235.297 2919,-221.941 2919,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2919,-200.05 2923.5,-210.05 2919,-205.05 2919,-210.05 2919,-210.05 2919,-210.05 2919,-205.05 2914.5,-210.05 2919,-200.05 2919,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge37&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2942\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node53&#45;&gt;node8 -->\n",
"<g id=\"edge79\" class=\"edge\"><title>node53&#45;&gt;node8</title>\n",
"<g id=\"a_edge79\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2919.87,-163.641C2920.39,-153.297 2921.05,-139.941 2921.64,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2922.15,-118.05 2926.14,-128.262 2921.9,-123.044 2921.65,-128.038 2921.65,-128.038 2921.65,-128.038 2921.9,-123.044 2917.15,-127.813 2922.15,-118.05 2922.15,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge79&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2944\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node54 -->\n",
"<g id=\"node55\" class=\"node\"><title>node54</title>\n",
"<g id=\"a_node55\"><a xlink:href=\"http://dbpedia.org/resource/Road_with_Cypress_and_Star\" xlink:title=\"Road with Cypress\\nand Star\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1464\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Road with Cypress</text>\n",
"<text text-anchor=\"middle\" x=\"1464\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">and Star</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node54&#45;&gt;node32 -->\n",
"<g id=\"edge38\" class=\"edge\"><title>node54&#45;&gt;node32</title>\n",
"<g id=\"a_edge38\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1460,-245.729C1456.8,-235.973 1451.27,-224.47 1442,-218 1396.21,-186.042 1233.99,-182.157 1151.28,-182.34\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1141.12,-182.384 1151.1,-177.841 1146.12,-182.362 1151.12,-182.34 1151.12,-182.34 1151.12,-182.34 1146.12,-182.362 1151.13,-186.84 1141.12,-182.384 1141.12,-182.384\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge38&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1475\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node55 -->\n",
"<g id=\"node56\" class=\"node\"><title>node55</title>\n",
"<g id=\"a_node56\"><a xlink:href=\"http://dbpedia.org/resource/The_Wheat_Field\" xlink:title=\"The\\nWheat Field\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"825\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">The</text>\n",
"<text text-anchor=\"middle\" x=\"825\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Wheat Field</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node55&#45;&gt;node32 -->\n",
"<g id=\"edge39\" class=\"edge\"><title>node55&#45;&gt;node32</title>\n",
"<g id=\"a_edge39\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M855.849,-245.948C874.048,-236.513 897.798,-225.263 920,-218 963.886,-203.642 1015.76,-194.383 1052.88,-189.018\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1062.94,-187.607 1053.66,-193.453 1057.99,-188.302 1053.03,-188.996 1053.03,-188.996 1053.03,-188.996 1057.99,-188.302 1052.41,-184.54 1062.94,-187.607 1062.94,-187.607\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge39&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"943\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node56 -->\n",
"<g id=\"node57\" class=\"node\"><title>node56</title>\n",
"<g id=\"a_node57\"><a xlink:href=\"http://dbpedia.org/resource/Memory_of_the_Garden_at_Etten_(Ladies_of_Arles)\" xlink:title=\"Memory of the Garden\\nat Etten (Ladies of Arles)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3702\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Memory of the Garden</text>\n",
"<text text-anchor=\"middle\" x=\"3702\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">at Etten (Ladies of Arles)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node57 -->\n",
"<g id=\"node58\" class=\"node\"><title>node57</title>\n",
"<g id=\"a_node58\"><a xlink:href=\"http://dbpedia.org/resource/Hermitage_Museum\" xlink:title=\"Hermitage\\nMuseum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3702\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Hermitage</text>\n",
"<text text-anchor=\"middle\" x=\"3702\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node56&#45;&gt;node57 -->\n",
"<g id=\"edge40\" class=\"edge\"><title>node56&#45;&gt;node57</title>\n",
"<g id=\"a_edge40\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3702,-245.641C3702,-235.297 3702,-221.941 3702,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3702,-200.05 3706.5,-210.05 3702,-205.05 3702,-210.05 3702,-210.05 3702,-210.05 3702,-205.05 3697.5,-210.05 3702,-200.05 3702,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge40&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3725\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node57&#45;&gt;node17 -->\n",
"<g id=\"edge76\" class=\"edge\"><title>node57&#45;&gt;node17</title>\n",
"<g id=\"a_edge76\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3695.03,-163.962C3692.74,-158.269 3690.22,-151.878 3688,-146 3685.79,-140.136 3683.48,-133.812 3681.34,-127.81\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3677.92,-118.152 3685.5,-126.078 3679.59,-122.865 3681.26,-127.579 3681.26,-127.579 3681.26,-127.579 3679.59,-122.865 3677.02,-129.08 3677.92,-118.152 3677.92,-118.152\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge76&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3710\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node79 -->\n",
"<g id=\"node80\" class=\"node\"><title>node79</title>\n",
"<g id=\"a_node80\"><a xlink:href=\"http://dbpedia.org/resource/Saint_Petersburg\" xlink:title=\"Saint\\nPetersburg\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3759\" y=\"-103\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Saint</text>\n",
"<text text-anchor=\"middle\" x=\"3759\" y=\"-92\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Petersburg</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node57&#45;&gt;node79 -->\n",
"<g id=\"edge69\" class=\"edge\"><title>node57&#45;&gt;node79</title>\n",
"<g id=\"a_edge69\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3717.86,-163.666C3722.61,-158.173 3727.69,-151.973 3732,-146 3736.3,-140.041 3740.56,-133.372 3744.39,-127.031\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3749.65,-118.097 3748.46,-128.998 3747.11,-122.407 3744.58,-126.717 3744.58,-126.717 3744.58,-126.717 3747.11,-122.407 3740.7,-124.436 3749.65,-118.097 3749.65,-118.097\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge69&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3761\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node58 -->\n",
"<g id=\"node59\" class=\"node\"><title>node58</title>\n",
"<g id=\"a_node59\"><a xlink:href=\"http://dbpedia.org/resource/Daubigny's_Garden\" xlink:title=\"s Garden\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4100\" y=\"-261.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">s Garden</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node59 -->\n",
"<g id=\"node60\" class=\"node\"><title>node59</title>\n",
"<g id=\"a_node60\"><a xlink:href=\"http://dbpedia.org/resource/Kunstmuseum_Basel\" xlink:title=\"Kunstmuseum\\nBasel\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4101\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Kunstmuseum</text>\n",
"<text text-anchor=\"middle\" x=\"4101\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Basel</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node58&#45;&gt;node59 -->\n",
"<g id=\"edge41\" class=\"edge\"><title>node58&#45;&gt;node59</title>\n",
"<g id=\"a_edge41\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4100.22,-245.641C4100.35,-235.297 4100.51,-221.941 4100.66,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4100.79,-200.05 4105.16,-210.106 4100.72,-205.05 4100.66,-210.049 4100.66,-210.049 4100.66,-210.049 4100.72,-205.05 4096.16,-209.993 4100.79,-200.05 4100.79,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge41&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4124\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node62 -->\n",
"<g id=\"node63\" class=\"node\"><title>node62</title>\n",
"<g id=\"a_node63\"><a xlink:href=\"http://dbpedia.org/resource/Basel\" xlink:title=\"Basel\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4122\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Basel</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node59&#45;&gt;node62 -->\n",
"<g id=\"edge60\" class=\"edge\"><title>node59&#45;&gt;node62</title>\n",
"<g id=\"a_edge60\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4105.56,-163.641C4108.3,-153.192 4111.85,-139.668 4114.95,-127.862\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4117.52,-118.05 4119.34,-128.865 4116.25,-122.886 4114.99,-127.722 4114.99,-127.722 4114.99,-127.722 4116.25,-122.886 4110.63,-126.58 4117.52,-118.05 4117.52,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge60&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4135\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node60 -->\n",
"<g id=\"node61\" class=\"node\"><title>node60</title>\n",
"<g id=\"a_node61\"><a xlink:href=\"http://dbpedia.org/resource/Zürich\" xlink:title=\"Zürich\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4196\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Zürich</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node61 -->\n",
"<g id=\"node62\" class=\"node\"><title>node61</title>\n",
"<g id=\"a_node62\"><a xlink:href=\"http://dbpedia.org/resource/Switzerland\" xlink:title=\"Switzerland\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4159\" y=\"-15.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Switzerland</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node60&#45;&gt;node61 -->\n",
"<g id=\"edge44\" class=\"edge\"><title>node60&#45;&gt;node61</title>\n",
"<g id=\"a_edge44\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4187.97,-81.6412C4183.04,-70.9805 4176.63,-57.1205 4171.09,-45.149\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4166.89,-36.0501 4175.17,-43.2374 4168.98,-40.5882 4171.08,-45.1264 4171.08,-45.1264 4171.08,-45.1264 4168.98,-40.5882 4167,-47.0154 4166.89,-36.0501 4166.89,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge44&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4201.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node62&#45;&gt;node61 -->\n",
"<g id=\"edge45\" class=\"edge\"><title>node62&#45;&gt;node61</title>\n",
"<g id=\"a_edge45\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4122.47,-81.6902C4123.25,-73.0445 4125.03,-62.6182 4129,-54 4130.56,-50.6015 4132.56,-47.277 4134.77,-44.1128\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4141,-36.1709 4138.37,-46.8162 4137.92,-40.1047 4134.83,-44.0386 4134.83,-44.0386 4134.83,-44.0386 4137.92,-40.1047 4131.29,-41.2609 4141,-36.1709 4141,-36.1709\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge45&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4150.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node63 -->\n",
"<g id=\"node64\" class=\"node\"><title>node63</title>\n",
"<g id=\"a_node64\"><a xlink:href=\"http://dbpedia.org/resource/Flowering_Orchards\" xlink:title=\"Flowering\\nOrchards\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"909\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Flowering</text>\n",
"<text text-anchor=\"middle\" x=\"909\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Orchards</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node63&#45;&gt;node32 -->\n",
"<g id=\"edge46\" class=\"edge\"><title>node63&#45;&gt;node32</title>\n",
"<g id=\"a_edge46\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M936.405,-245.933C951.773,-236.838 971.518,-225.923 990,-218 1010.18,-209.348 1033.22,-201.777 1053.14,-195.91\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1062.94,-193.086 1054.58,-200.18 1058.13,-194.471 1053.33,-195.856 1053.33,-195.856 1053.33,-195.856 1058.13,-194.471 1052.08,-191.532 1062.94,-193.086 1062.94,-193.086\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge46&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1013\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node64&#45;&gt;node11 -->\n",
"<g id=\"edge84\" class=\"edge\"><title>node64&#45;&gt;node11</title>\n",
"<g id=\"a_edge84\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M138.449,-87.2279C143.633,-85.4277 148.952,-83.6287 154,-82 196.298,-68.3535 206.478,-63.0072 250,-54 335.901,-36.2222 438.623,-26.1906 492.607,-21.7665\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"502.735,-20.9558 493.125,-26.2395 497.75,-21.3548 492.766,-21.7538 492.766,-21.7538 492.766,-21.7538 497.75,-21.3548 492.407,-17.2682 502.735,-20.9558 502.735,-20.9558\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge84&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"271.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node65 -->\n",
"<g id=\"node66\" class=\"node\"><title>node65</title>\n",
"<g id=\"a_node66\"><a xlink:href=\"http://dbpedia.org/resource/Green_Wheat_Field_with_Cypress\" xlink:title=\"Green Wheat\\nField with Cypress\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3991\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Green Wheat</text>\n",
"<text text-anchor=\"middle\" x=\"3991\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Field with Cypress</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node65&#45;&gt;node42 -->\n",
"<g id=\"edge48\" class=\"edge\"><title>node65&#45;&gt;node42</title>\n",
"<g id=\"a_edge48\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3991,-245.641C3991,-235.297 3991,-221.941 3991,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3991,-200.05 3995.5,-210.05 3991,-205.05 3991,-210.05 3991,-210.05 3991,-210.05 3991,-205.05 3986.5,-210.05 3991,-200.05 3991,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge48&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4014\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node66&#45;&gt;node11 -->\n",
"<g id=\"edge87\" class=\"edge\"><title>node66&#45;&gt;node11</title>\n",
"<g id=\"a_edge87\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M630.718,-81.7889C622.635,-72.7592 611.969,-61.9528 601,-54 590.482,-46.3745 578.051,-39.6082 566.553,-34.1064\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"557.178,-29.7911 568.143,-29.8843 561.72,-31.8816 566.262,-33.9721 566.262,-33.9721 566.262,-33.9721 561.72,-31.8816 564.38,-38.0599 557.178,-29.7911 557.178,-29.7911\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge87&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"634.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node67 -->\n",
"<g id=\"node68\" class=\"node\"><title>node67</title>\n",
"<g id=\"a_node68\"><a xlink:href=\"http://dbpedia.org/resource/The_Starry_Night\" xlink:title=\"The\\nStarry Night\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"325\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">The</text>\n",
"<text text-anchor=\"middle\" x=\"325\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Starry Night</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node67&#45;&gt;node45 -->\n",
"<g id=\"edge50\" class=\"edge\"><title>node67&#45;&gt;node45</title>\n",
"<g id=\"a_edge50\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M322.772,-245.832C322.298,-237.223 322.722,-226.786 326,-218 327.252,-214.645 328.97,-211.38 330.952,-208.278\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"337.06,-200.03 334.725,-210.744 334.085,-204.048 331.109,-208.066 331.109,-208.066 331.109,-208.066 334.085,-204.048 327.493,-205.388 337.06,-200.03 337.06,-200.03\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge50&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"349\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node68 -->\n",
"<g id=\"node69\" class=\"node\"><title>node68</title>\n",
"<g id=\"a_node69\"><a xlink:href=\"http://dbpedia.org/resource/A_Meadow_in_the_Mountains:_Le_Mas_de_Saint-Paul\" xlink:title=\" Le Mas\\nde Saint&#45;Paul\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"998\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\"> Le Mas</text>\n",
"<text text-anchor=\"middle\" x=\"998\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">de Saint&#45;Paul</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node68&#45;&gt;node32 -->\n",
"<g id=\"edge52\" class=\"edge\"><title>node68&#45;&gt;node32</title>\n",
"<g id=\"a_edge52\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1017.68,-245.924C1027.77,-237.338 1040.37,-226.894 1052,-218 1057.19,-214.03 1062.79,-209.941 1068.29,-206.021\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1076.78,-200.041 1071.19,-209.478 1072.69,-202.92 1068.6,-205.798 1068.6,-205.798 1068.6,-205.798 1072.69,-202.92 1066.01,-202.118 1076.78,-200.041 1076.78,-200.041\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge52&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1075\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node69 -->\n",
"<g id=\"node70\" class=\"node\"><title>node69</title>\n",
"<g id=\"a_node70\"><a xlink:href=\"http://dbpedia.org/resource/Butterflies_(Van_Gogh_series)\" xlink:title=\"Butterflies\\n(Van Gogh series)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2671\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Butterflies</text>\n",
"<text text-anchor=\"middle\" x=\"2671\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">(Van Gogh series)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node69&#45;&gt;node27 -->\n",
"<g id=\"edge53\" class=\"edge\"><title>node69&#45;&gt;node27</title>\n",
"<g id=\"a_edge53\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2620.37,-246.406C2586.67,-236.174 2541.17,-223.913 2500,-218 2295.88,-188.684 2237.04,-235.401 2030.15,-199.865\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2020.18,-198.111 2030.81,-195.413 2025.1,-198.978 2030.03,-199.845 2030.03,-199.845 2030.03,-199.845 2025.1,-198.978 2029.25,-204.277 2020.18,-198.111 2020.18,-198.111\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge53&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2571\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node70 -->\n",
"<g id=\"node71\" class=\"node\"><title>node70</title>\n",
"<g id=\"a_node71\"><a xlink:href=\"http://dbpedia.org/resource/The_Yellow_House_(painting)\" xlink:title=\"The Yellow House\\n(painting)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1583\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">The Yellow House</text>\n",
"<text text-anchor=\"middle\" x=\"1583\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">(painting)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node70&#45;&gt;node27 -->\n",
"<g id=\"edge57\" class=\"edge\"><title>node70&#45;&gt;node27</title>\n",
"<g id=\"a_edge57\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1631.7,-248.605C1634.85,-247.713 1637.97,-246.838 1641,-246 1688.8,-232.802 1700.43,-227.997 1749,-218 1808.44,-205.765 1877.4,-195.751 1923.78,-189.616\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1933.91,-188.291 1924.57,-194.051 1928.95,-188.94 1923.99,-189.589 1923.99,-189.589 1923.99,-189.589 1928.95,-188.94 1923.41,-185.127 1933.91,-188.291 1933.91,-188.291\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge57&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1772\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node72&#45;&gt;node85 -->\n",
"<g id=\"edge82\" class=\"edge\"><title>node72&#45;&gt;node85</title>\n",
"<g id=\"a_edge82\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2193.95,-83.3404C2172.44,-73.687 2143.55,-61.7195 2117,-54 2067.63,-39.6447 2009.43,-30.1202 1969.54,-24.6797\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1959.56,-23.3512 1970.06,-20.2099 1964.51,-24.0109 1969.47,-24.6706 1969.47,-24.6706 1969.47,-24.6706 1964.51,-24.0109 1968.88,-29.1312 1959.56,-23.3512 1959.56,-23.3512\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge82&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2166.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node73 -->\n",
"<g id=\"node74\" class=\"node\"><title>node73</title>\n",
"<g id=\"a_node74\"><a xlink:href=\"http://dbpedia.org/resource/Wheat_Field_with_a_Lark\" xlink:title=\"Wheat\\nField with a Lark\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1696\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Wheat</text>\n",
"<text text-anchor=\"middle\" x=\"1696\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Field with a Lark</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node73&#45;&gt;node27 -->\n",
"<g id=\"edge61\" class=\"edge\"><title>node73&#45;&gt;node27</title>\n",
"<g id=\"a_edge61\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1742.08,-246.055C1767.27,-237.103 1799.14,-226.286 1828,-218 1859.53,-208.946 1895.3,-200.486 1923.88,-194.152\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1933.68,-192.002 1924.87,-198.541 1928.79,-193.074 1923.91,-194.146 1923.91,-194.146 1923.91,-194.146 1928.79,-193.074 1922.95,-189.751 1933.68,-192.002 1933.68,-192.002\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge61&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1851\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node74 -->\n",
"<g id=\"node75\" class=\"node\"><title>node74</title>\n",
"<g id=\"a_node75\"><a xlink:href=\"http://dbpedia.org/resource/Blossoming_Chestnut_Branches\" xlink:title=\"Blossoming Chestnut\\nBranches\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4208\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Blossoming Chestnut</text>\n",
"<text text-anchor=\"middle\" x=\"4208\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Branches</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node75 -->\n",
"<g id=\"node76\" class=\"node\"><title>node75</title>\n",
"<g id=\"a_node76\"><a xlink:href=\"http://dbpedia.org/resource/Foundation_E.G._Bührle\" xlink:title=\"Foundation E.G.\\nBührle\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4208\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Foundation E.G.</text>\n",
"<text text-anchor=\"middle\" x=\"4208\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Bührle</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node74&#45;&gt;node75 -->\n",
"<g id=\"edge63\" class=\"edge\"><title>node74&#45;&gt;node75</title>\n",
"<g id=\"a_edge63\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4208,-245.641C4208,-235.297 4208,-221.941 4208,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4208,-200.05 4212.5,-210.05 4208,-205.05 4208,-210.05 4208,-210.05 4208,-210.05 4208,-205.05 4203.5,-210.05 4208,-200.05 4208,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge63&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4231\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node75&#45;&gt;node60 -->\n",
"<g id=\"edge68\" class=\"edge\"><title>node75&#45;&gt;node60</title>\n",
"<g id=\"a_edge68\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M4205.4,-163.641C4203.84,-153.297 4201.84,-139.941 4200.08,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"4198.56,-118.05 4204.49,-127.272 4199.3,-122.995 4200.04,-127.939 4200.04,-127.939 4200.04,-127.939 4199.3,-122.995 4195.59,-128.607 4198.56,-118.05 4198.56,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge68&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"4225\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node76&#45;&gt;node3 -->\n",
"<g id=\"edge65\" class=\"edge\"><title>node76&#45;&gt;node3</title>\n",
"<g id=\"a_edge65\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3263,-81.6412C3263,-71.2971 3263,-57.941 3263,-46.2206\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3263,-36.0501 3267.5,-46.0501 3263,-41.0501 3263,-46.0501 3263,-46.0501 3263,-46.0501 3263,-41.0501 3258.5,-46.0501 3263,-36.0501 3263,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge65&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3284.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node77 -->\n",
"<g id=\"node78\" class=\"node\"><title>node77</title>\n",
"<g id=\"a_node78\"><a xlink:href=\"http://dbpedia.org/resource/Cafe_Terrace_at_Night\" xlink:title=\"Cafe\\nTerrace at Night\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1102\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Cafe</text>\n",
"<text text-anchor=\"middle\" x=\"1102\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Terrace at Night</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node77&#45;&gt;node32 -->\n",
"<g id=\"edge66\" class=\"edge\"><title>node77&#45;&gt;node32</title>\n",
"<g id=\"a_edge66\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1102,-245.641C1102,-235.297 1102,-221.941 1102,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1102,-200.05 1106.5,-210.05 1102,-205.05 1102,-210.05 1102,-210.05 1102,-210.05 1102,-205.05 1097.5,-210.05 1102,-200.05 1102,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge66&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1125\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node78 -->\n",
"<g id=\"node79\" class=\"node\"><title>node78</title>\n",
"<g id=\"a_node79\"><a xlink:href=\"http://dbpedia.org/resource/Montmartre_(Van_Gogh_series)\" xlink:title=\"Montmartre\\n(Van Gogh series)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1811\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Montmartre</text>\n",
"<text text-anchor=\"middle\" x=\"1811\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">(Van Gogh series)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node78&#45;&gt;node27 -->\n",
"<g id=\"edge67\" class=\"edge\"><title>node78&#45;&gt;node27</title>\n",
"<g id=\"a_edge67\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1841.79,-245.948C1857.8,-237.272 1877.78,-226.74 1896,-218 1905.83,-213.281 1916.46,-208.48 1926.69,-204.007\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1935.92,-200.003 1928.54,-208.108 1931.34,-201.991 1926.75,-203.979 1926.75,-203.979 1926.75,-203.979 1931.34,-201.991 1924.96,-199.85 1935.92,-200.003 1935.92,-200.003\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge67&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1919\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node79&#45;&gt;node18 -->\n",
"<g id=\"edge80\" class=\"edge\"><title>node79&#45;&gt;node18</title>\n",
"<g id=\"a_edge80\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3748.58,-81.6412C3742.12,-70.8749 3733.71,-56.8457 3726.48,-44.7939\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3721.23,-36.0501 3730.23,-42.3098 3723.8,-40.3376 3726.38,-44.625 3726.38,-44.625 3726.38,-44.625 3723.8,-40.3376 3722.52,-46.9403 3721.23,-36.0501 3721.23,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge80&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3759.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node80&#45;&gt;node11 -->\n",
"<g id=\"edge93\" class=\"edge\"><title>node80&#45;&gt;node11</title>\n",
"<g id=\"a_edge93\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M492.924,-81.6797C493.912,-73.0313 495.925,-62.6058 500,-54 501.601,-50.6186 503.618,-47.3049 505.846,-44.1471\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"512.092,-36.2125 509.442,-46.8534 508.999,-40.1412 505.906,-44.0699 505.906,-44.0699 505.906,-44.0699 508.999,-40.1412 502.371,-41.2864 512.092,-36.2125 512.092,-36.2125\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge93&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"521.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node81 -->\n",
"<g id=\"node82\" class=\"node\"><title>node81</title>\n",
"<g id=\"a_node82\"><a xlink:href=\"http://dbpedia.org/resource/View_of_Paris_from_Vincent's_Room_in_the_Rue_Lepic\" xlink:title=\"s Room in the\\nRue Lepic\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1921\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">s Room in the</text>\n",
"<text text-anchor=\"middle\" x=\"1921\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Rue Lepic</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node81&#45;&gt;node27 -->\n",
"<g id=\"edge72\" class=\"edge\"><title>node81&#45;&gt;node27</title>\n",
"<g id=\"a_edge72\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1933.15,-245.641C1940.76,-234.769 1950.7,-220.57 1959.19,-208.44\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1965.06,-200.05 1963.02,-210.823 1962.2,-204.146 1959.33,-208.242 1959.33,-208.242 1959.33,-208.242 1962.2,-204.146 1955.64,-205.662 1965.06,-200.05 1965.06,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge72&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1976\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node82 -->\n",
"<g id=\"node83\" class=\"node\"><title>node82</title>\n",
"<g id=\"a_node83\"><a xlink:href=\"http://dbpedia.org/resource/Arles:_View_from_the_Wheat_Fields\" xlink:title=\" View from\\nthe Wheat Fields\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3569\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\"> View from</text>\n",
"<text text-anchor=\"middle\" x=\"3569\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">the Wheat Fields</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node82&#45;&gt;node4 -->\n",
"<g id=\"edge73\" class=\"edge\"><title>node82&#45;&gt;node4</title>\n",
"<g id=\"a_edge73\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3552.92,-245.656C3544.95,-237.192 3535.1,-226.933 3526,-218 3522.33,-214.401 3518.41,-210.66 3514.52,-207.021\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3507.16,-200.213 3517.56,-203.705 3510.83,-203.61 3514.5,-207.007 3514.5,-207.007 3514.5,-207.007 3510.83,-203.61 3511.44,-210.309 3507.16,-200.213 3507.16,-200.213\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge73&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3559\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node89 -->\n",
"<g id=\"node90\" class=\"node\"><title>node89</title>\n",
"<g id=\"a_node90\"><a xlink:href=\"http://dbpedia.org/resource/Poland\" xlink:title=\"Poland\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3866\" y=\"-15.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Poland</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node83&#45;&gt;node89 -->\n",
"<g id=\"edge89\" class=\"edge\"><title>node83&#45;&gt;node89</title>\n",
"<g id=\"a_edge89\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3866,-81.6412C3866,-71.2971 3866,-57.941 3866,-46.2206\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3866,-36.0501 3870.5,-46.0501 3866,-41.0501 3866,-46.0501 3866,-46.0501 3866,-46.0501 3866,-41.0501 3861.5,-46.0501 3866,-36.0501 3866,-36.0501\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge89&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3887.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node84&#45;&gt;node85 -->\n",
"<g id=\"edge77\" class=\"edge\"><title>node84&#45;&gt;node85</title>\n",
"<g id=\"a_edge77\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M1740.32,-88.5414C1774.51,-75.4569 1833.58,-52.8439 1875.07,-36.9651\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1884.42,-33.3847 1876.69,-41.1622 1879.75,-35.1721 1875.08,-36.9596 1875.08,-36.9596 1875.08,-36.9596 1879.75,-35.1721 1873.47,-32.7569 1884.42,-33.3847 1884.42,-33.3847\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge77&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"1852.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node86 -->\n",
"<g id=\"node87\" class=\"node\"><title>node86</title>\n",
"<g id=\"a_node87\"><a xlink:href=\"http://dbpedia.org/resource/Torso_of_Venus_and_a_Landscape\" xlink:title=\"Torso of Venus and\\na Landscape\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2034\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Torso of Venus and</text>\n",
"<text text-anchor=\"middle\" x=\"2034\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">a Landscape</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node86&#45;&gt;node27 -->\n",
"<g id=\"edge78\" class=\"edge\"><title>node86&#45;&gt;node27</title>\n",
"<g id=\"a_edge78\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2022.37,-245.805C2016.61,-237.376 2009.51,-227.104 2003,-218 2000.69,-214.768 1998.23,-211.39 1995.78,-208.061\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"1989.82,-200 1999.38,-205.361 1992.79,-204.019 1995.77,-208.038 1995.77,-208.038 1995.77,-208.038 1992.79,-204.019 1992.15,-210.715 1989.82,-200 1989.82,-200\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge78&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2033\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node87 -->\n",
"<g id=\"node88\" class=\"node\"><title>node87</title>\n",
"<g id=\"a_node88\"><a xlink:href=\"http://dbpedia.org/resource/The_New_Art_Gallery_Walsall\" xlink:title=\"The New Art Gallery\\nWalsall\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3335\" y=\"-185\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">The New Art Gallery</text>\n",
"<text text-anchor=\"middle\" x=\"3335\" y=\"-174\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Walsall</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node88 -->\n",
"<g id=\"node89\" class=\"node\"><title>node88</title>\n",
"<g id=\"a_node89\"><a xlink:href=\"http://dbpedia.org/resource/Walsall\" xlink:title=\"Walsall\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3335\" y=\"-97.5\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Walsall</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node87&#45;&gt;node88 -->\n",
"<g id=\"edge83\" class=\"edge\"><title>node87&#45;&gt;node88</title>\n",
"<g id=\"a_edge83\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3335,-163.641C3335,-153.297 3335,-139.941 3335,-128.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3335,-118.05 3339.5,-128.05 3335,-123.05 3335,-128.05 3335,-128.05 3335,-128.05 3335,-123.05 3330.5,-128.05 3335,-118.05 3335,-118.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge83&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/location\" xlink:title=\"dbo:location\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3357\" y=\"-138.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:location</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node88&#45;&gt;node3 -->\n",
"<g id=\"edge96\" class=\"edge\"><title>node88&#45;&gt;node3</title>\n",
"<g id=\"a_edge96\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3327.52,-81.6634C3323.19,-72.8097 3317.18,-62.2051 3310,-54 3306.4,-49.8849 3302.24,-45.9549 3297.91,-42.3137\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3290.03,-36.0938 3300.67,-38.7557 3293.95,-39.1911 3297.88,-42.2884 3297.88,-42.2884 3297.88,-42.2884 3293.95,-39.1911 3295.09,-45.821 3290.03,-36.0938 3290.03,-36.0938\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge96&#45;label\"><a xlink:href=\"http://dbpedia.org/ontology/country\" xlink:title=\"dbo:country\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3338.5\" y=\"-56.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbo:country</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node90 -->\n",
"<g id=\"node91\" class=\"node\"><title>node90</title>\n",
"<g id=\"a_node91\"><a xlink:href=\"http://dbpedia.org/resource/Sorrow_(Van_Gogh)\" xlink:title=\"Sorrow (Van\\nGogh)\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3335\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Sorrow (Van</text>\n",
"<text text-anchor=\"middle\" x=\"3335\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Gogh)</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node90&#45;&gt;node87 -->\n",
"<g id=\"edge91\" class=\"edge\"><title>node90&#45;&gt;node87</title>\n",
"<g id=\"a_edge91\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M3335,-245.641C3335,-235.297 3335,-221.941 3335,-210.221\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"3335,-200.05 3339.5,-210.05 3335,-205.05 3335,-210.05 3335,-210.05 3335,-210.05 3335,-205.05 3330.5,-210.05 3335,-200.05 3335,-200.05\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge91&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"3358\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node91 -->\n",
"<g id=\"node92\" class=\"node\"><title>node91</title>\n",
"<g id=\"a_node92\"><a xlink:href=\"http://dbpedia.org/resource/The_Potato_Eaters\" xlink:title=\"The\\nPotato Eaters\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2147\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">The</text>\n",
"<text text-anchor=\"middle\" x=\"2147\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Potato Eaters</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node91&#45;&gt;node27 -->\n",
"<g id=\"edge92\" class=\"edge\"><title>node91&#45;&gt;node27</title>\n",
"<g id=\"a_edge92\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2115.48,-245.94C2099.09,-237.261 2078.63,-226.731 2060,-218 2050.03,-213.326 2039.26,-208.574 2028.88,-204.142\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2019.51,-200.172 2030.47,-199.926 2024.11,-202.121 2028.72,-204.07 2028.72,-204.07 2028.72,-204.07 2024.11,-202.121 2026.96,-208.214 2019.51,-200.172 2019.51,-200.172\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge92&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2103\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node92 -->\n",
"<g id=\"node93\" class=\"node\"><title>node92</title>\n",
"<g id=\"a_node93\"><a xlink:href=\"http://dbpedia.org/resource/Crab_on_its_Back\" xlink:title=\"Crab on its\\nBack\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2240\" y=\"-267\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Crab on its</text>\n",
"<text text-anchor=\"middle\" x=\"2240\" y=\"-256\" font-family=\"DejaVu Sans,Tahoma,Geneva,sans-serif\" font-size=\"10.00\" fill=\"blue\">Back</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"<!-- node92&#45;&gt;node27 -->\n",
"<g id=\"edge95\" class=\"edge\"><title>node92&#45;&gt;node27</title>\n",
"<g id=\"a_edge95\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<path fill=\"none\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" d=\"M2205.99,-246.895C2184.59,-237.315 2156.16,-225.588 2130,-218 2089.03,-206.115 2075.02,-210.439 2030.04,-200.023\"/>\n",
"<polygon fill=\"#9fc9e5\" fill-opacity=\"0.376471\" stroke=\"#9fc9e5\" stroke-opacity=\"0.376471\" points=\"2020.28,-197.65 2031.06,-195.64 2025.14,-198.831 2030,-200.013 2030,-200.013 2030,-200.013 2025.14,-198.831 2028.93,-204.385 2020.28,-197.65 2020.28,-197.65\"/>\n",
"</a>\n",
"</g>\n",
"<g id=\"a_edge95&#45;label\"><a xlink:href=\"http://dbpedia.org/property/museum\" xlink:title=\"dbp:museum\" target=\"_other\">\n",
"<text text-anchor=\"middle\" x=\"2181\" y=\"-220.8\" font-family=\"Times,serif\" font-size=\"9.00\" fill=\"#204080\">dbp:museum</text>\n",
"</a>\n",
"</g>\n",
"</g>\n",
"</g>\n",
"</svg>\n"
]
},
"metadata": {
"unconfined": true
},
"output_type": "display_data"
}
],
"source": [
"%format n3\n",
"%display diagram svg\n",
"\n",
"PREFIX wd: <http://www.wikidata.org/entity/>\n",
"CONSTRUCT { ?painting dbp:museum ?museum .\n",
" ?painting dct:subject ?subject .\n",
" ?museum dbo:location ?location .\n",
" ?location dbo:country ?country .\n",
" }\n",
"WHERE {\n",
" ?painting dbp:artist dbr:Vincent_van_Gogh .\n",
" ?painting a wd:Q386724 .\n",
" ?painting a dbo:Artwork .\n",
" ?painting dbp:museum ?museum .\n",
" ?museum dbo:location ?location .\n",
" ?location dbo:country ?country .\n",
"}"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<div style=\"border-top: 1px gray solid; font-family: Cursive, sans-serif;\">Version: 1.1 (2016-08-10)<br/>\n",
"Author: Paulo Villegas</div>"
]
}
],
"metadata": {
"datacleaner": {
"position": {
"top": "50px"
},
"python": {
"varRefreshCmd": "try:\n print(_datacleaner.dataframe_metadata())\nexcept:\n print([])"
},
"window_display": false
},
"kernelspec": {
"display_name": "Python 3",
"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.7.9"
},
"latex_envs": {
"LaTeX_envs_menu_present": true,
"autocomplete": true,
"bibliofile": "biblio.bib",
"cite_by": "apalike",
"current_citInitial": 1,
"eqLabelWithNumbers": true,
"eqNumInitial": 1,
"hotkeys": {
"equation": "Ctrl-E",
"itemize": "Ctrl-I"
},
"labels_anchors": false,
"latex_user_defs": false,
"report_style_numbering": false,
"user_envs_cfg": false
}
},
"nbformat": 4,
"nbformat_minor": 1
}